mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-27 02:48:41 -06:00
Migration Update
This commit is contained in:
parent
bb9cdda9a0
commit
4d499cd180
@ -1,168 +0,0 @@
|
||||
==========================
|
||||
Attachment Zipped Download
|
||||
==========================
|
||||
|
||||
..
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:4163544eb16787f39f46edcd97305586594a6f708c1e489908d344467c82483e
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fknowledge-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/knowledge/tree/16.0/attachment_zipped_download
|
||||
:alt: OCA/knowledge
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/knowledge-16-0/knowledge-16-0-attachment_zipped_download
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/knowledge&target_branch=16.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This module allows downloading multiple attachments as a zip file.
|
||||
|
||||
This also provide a helper class `IrAttachmentActionDownloadMixin`
|
||||
to be used by developer to add action method on models.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
#. Go to *Settings > Technical > Database Structure > Attachments* and select some files.
|
||||
#. Go to *Actions > Download* and a zip file containing the selected files will be downloaded.
|
||||
|
||||
## For developer
|
||||
|
||||
You can reuse the `IrAttachmentActionDownloadMixin` on your
|
||||
favorite models::
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class StockPicking(models.Model):
|
||||
_name = "stock.picking"
|
||||
_inherit = ["stock.picking", "ir.attachment.action_download"]
|
||||
|
||||
|
||||
Then you can add an action button on list view line or on the action button
|
||||
(when multiple lines are selected) to download all files::
|
||||
|
||||
<odoo>
|
||||
<!--
|
||||
add a button on list view to download all attachement present
|
||||
on the given transfert
|
||||
-->
|
||||
<record id="vpicktree" model="ir.ui.view">
|
||||
<field name="inherit_id" ref="stock.vpicktree"/>
|
||||
<field name="name">stock.picking.tree download attachments</field>
|
||||
<field name="model">stock.picking</field>
|
||||
<field name="arch" type="xml">
|
||||
<field name="json_popover" position="after">
|
||||
<button name="action_download_attachments"
|
||||
type="object"
|
||||
icon="fa-download"
|
||||
string="Download attachment(s)"
|
||||
aria-label="Download Proof documents"
|
||||
class="float-right"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!--
|
||||
Add "Download attachments" item in the Action menu when
|
||||
multiple records are selected
|
||||
-->
|
||||
<record id="action_download_picking_attachements" model="ir.actions.server">
|
||||
<field name="name">Download attachments</field>
|
||||
<field name="model_id" ref="stock.model_stock_picking"/>
|
||||
<field name="binding_model_id" ref="stock.model_stock_picking"/>
|
||||
<field name="binding_view_types">list</field>
|
||||
<field name="state">code</field>
|
||||
<field name="code">
|
||||
action = records.action_download_attachments()
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
||||
|
||||
.. note::
|
||||
|
||||
Even you will be able to generate a zip file with multiple document with the
|
||||
same name it's advice to overwrite `_compute_zip_file_name` to improve the
|
||||
name. When a slash (`/`) is present in the path it will create a directory.
|
||||
This example will create a directory per stock.picking using its name::
|
||||
|
||||
class IrAttachment(models.Model):
|
||||
_inherit = "ir.attachment"
|
||||
|
||||
def _compute_zip_file_name(self):
|
||||
self.ensure_one()
|
||||
if self.res_model and self.res_model == "stock.picking":
|
||||
return (
|
||||
self.env[self.res_model]
|
||||
.browse(self.res_id)
|
||||
.display_name.replace("/", "-")
|
||||
+ "/"
|
||||
+ self.name
|
||||
)
|
||||
return super()._compute_zip_file_name()
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/knowledge/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/knowledge/issues/new?body=module:%20attachment_zipped_download%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* Tecnativa
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* César Fernández Domínguez <cesfernandez@outlook.com>
|
||||
|
||||
* `Tecnativa <https://www.tecnativa.com>`_:
|
||||
|
||||
* Víctor Martínez
|
||||
* Pedro M. Baeza
|
||||
|
||||
* Pierre Verkest <pierreverkest@gmail.com>
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
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.
|
||||
|
||||
This module is part of the `OCA/knowledge <https://github.com/OCA/knowledge/tree/16.0/attachment_zipped_download>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
@ -1,2 +0,0 @@
|
||||
from . import controllers
|
||||
from . import models
|
@ -1,15 +0,0 @@
|
||||
# Copyright 2022 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
{
|
||||
"name": "Attachment Zipped Download",
|
||||
"version": "16.0.2.0.2",
|
||||
"category": "Tools",
|
||||
"website": "https://github.com/OCA/knowledge",
|
||||
"author": "Tecnativa, Odoo Community Association (OCA)",
|
||||
"license": "AGPL-3",
|
||||
"depends": ["base"],
|
||||
"data": [
|
||||
"views/ir_attachment_view.xml",
|
||||
],
|
||||
"installable": True,
|
||||
}
|
@ -1 +0,0 @@
|
||||
from . import main
|
@ -1,23 +0,0 @@
|
||||
# Copyright 2019 César Fernández Domínguez <cesfernandez@outlook.com>
|
||||
# Copyright 2022 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl)
|
||||
from odoo import _, http
|
||||
from odoo.http import request
|
||||
|
||||
|
||||
class AttachmentZippedDownloadController(http.Controller):
|
||||
@http.route("/web/attachment/download_zip", type="http", auth="user")
|
||||
def download_zip(self, ids=None, debug=0):
|
||||
ids = [] if not ids else ids
|
||||
if len(ids) == 0:
|
||||
return
|
||||
list_ids = map(int, ids.split(","))
|
||||
out_file = request.env["ir.attachment"].browse(list_ids)._create_temp_zip()
|
||||
stream = http.Stream(
|
||||
type="data",
|
||||
data=out_file.getvalue(),
|
||||
mimetype="application/zip",
|
||||
as_attachment=True,
|
||||
download_name=_("attachments.zip"),
|
||||
)
|
||||
return stream.get_response()
|
@ -1,60 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * attachment_zipped_download
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.model,name:attachment_zipped_download.model_ir_attachment_action_download
|
||||
msgid ""
|
||||
"\n"
|
||||
" Mixin to help download attachments linked to record(s).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.model,name:attachment_zipped_download.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.actions.server,name:attachment_zipped_download.action_attachments_download
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment_action_download.py:0
|
||||
#, python-format
|
||||
msgid "No attachment!"
|
||||
msgstr ""
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid "None attachment selected. Only binary attachments allowed."
|
||||
msgstr ""
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment_action_download.py:0
|
||||
#, python-format
|
||||
msgid "There is no document found to download."
|
||||
msgstr ""
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "attachments.zip"
|
||||
msgstr ""
|
@ -1,79 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * attachment_zipped_download
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-03-15 14:04+0000\n"
|
||||
"PO-Revision-Date: 2023-09-07 16:37+0000\n"
|
||||
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.model,name:attachment_zipped_download.model_ir_attachment_action_download
|
||||
msgid ""
|
||||
"\n"
|
||||
" Mixin to help download attachments linked to record(s).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" Mixin para ayudar a descargar archivos adjuntos vinculados a "
|
||||
"registros.\n"
|
||||
" "
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.model,name:attachment_zipped_download.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Adjunto"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.actions.server,name:attachment_zipped_download.action_attachments_download
|
||||
msgid "Download"
|
||||
msgstr "Descargar"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment_action_download.py:0
|
||||
#, python-format
|
||||
msgid "No attachment!"
|
||||
msgstr "¡No hay adjuntos!"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid "None attachment selected. Only binary attachments allowed."
|
||||
msgstr ""
|
||||
"No se seleccionó ningún archivo adjunto. Solo se permiten archivos adjuntos "
|
||||
"binarios."
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment_action_download.py:0
|
||||
#, python-format
|
||||
msgid "There is no document found to download."
|
||||
msgstr "No se encontró ningún documento para descargar."
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "attachments.zip"
|
||||
msgstr "adjuntos.zip"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nombre mostrado"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación el"
|
@ -1,71 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * attachment_zipped_download
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.model,name:attachment_zipped_download.model_ir_attachment_action_download
|
||||
msgid ""
|
||||
"\n"
|
||||
" Mixin to help download attachments linked to record(s).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Mixin pour faciliter le téléchargements des pièces jointes lié aux "
|
||||
"enregistrements."
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.model,name:attachment_zipped_download.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Pièce jointe"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.actions.server,name:attachment_zipped_download.action_attachments_download
|
||||
msgid "Download"
|
||||
msgstr "Télécharger"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment_action_download.py:0
|
||||
#, python-format
|
||||
msgid "No attachment!"
|
||||
msgstr "Aucune pièce jointe !"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid "None attachment selected. Only binary attachments allowed."
|
||||
msgstr ""
|
||||
"Aucune pièce jointe sélectionnée. Seul les picèces jointes de type Binaire "
|
||||
"sont permises."
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment_action_download.py:0
|
||||
#, python-format
|
||||
msgid "There is no document found to download."
|
||||
msgstr "Aucune pièce jointe téléchargeable trouvé."
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "attachments.zip"
|
||||
msgstr "pieces-jointes.zip"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nom affiché"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Dernière modification le"
|
@ -1,64 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * attachment_zipped_download
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-02-15 21:23+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.model,name:attachment_zipped_download.model_ir_attachment_action_download
|
||||
msgid ""
|
||||
"\n"
|
||||
" Mixin to help download attachments linked to record(s).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.model,name:attachment_zipped_download.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Prilog"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.actions.server,name:attachment_zipped_download.action_attachments_download
|
||||
msgid "Download"
|
||||
msgstr "Preuzimanje"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment_action_download.py:0
|
||||
#, python-format
|
||||
msgid "No attachment!"
|
||||
msgstr ""
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid "None attachment selected. Only binary attachments allowed."
|
||||
msgstr "Nema odabranih priloga. Samo binarni prilozi su dozvoljeni."
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment_action_download.py:0
|
||||
#, python-format
|
||||
msgid "There is no document found to download."
|
||||
msgstr ""
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "attachments.zip"
|
||||
msgstr "attachments.zip"
|
@ -1,75 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * attachment_zipped_download
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-09-20 19:38+0000\n"
|
||||
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.model,name:attachment_zipped_download.model_ir_attachment_action_download
|
||||
msgid ""
|
||||
"\n"
|
||||
" Mixin to help download attachments linked to record(s).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" Mixin per aiutare a scaricare gli allegati collegati ai record.\n"
|
||||
" "
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.model,name:attachment_zipped_download.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Allegato"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.actions.server,name:attachment_zipped_download.action_attachments_download
|
||||
msgid "Download"
|
||||
msgstr "Scarica"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment_action_download.py:0
|
||||
#, python-format
|
||||
msgid "No attachment!"
|
||||
msgstr "Nessun allegato!"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid "None attachment selected. Only binary attachments allowed."
|
||||
msgstr "Nessun allegato selezionato. Consentiti solo allegati binari."
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment_action_download.py:0
|
||||
#, python-format
|
||||
msgid "There is no document found to download."
|
||||
msgstr "Non sono stati trovati documenti da scaricare."
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "attachments.zip"
|
||||
msgstr "attachments.zip"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nome visualizzato"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima modifica il"
|
@ -1,66 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * attachment_zipped_download
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-28 21:33+0000\n"
|
||||
"Last-Translator: Peter Romão <peterromao@yahoo.co.uk>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.model,name:attachment_zipped_download.model_ir_attachment_action_download
|
||||
msgid ""
|
||||
"\n"
|
||||
" Mixin to help download attachments linked to record(s).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" Mixin para ajudar a baixar anexos vinculados ao(s) registo(s).\n"
|
||||
" "
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.model,name:attachment_zipped_download.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Anexo"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#: model:ir.actions.server,name:attachment_zipped_download.action_attachments_download
|
||||
msgid "Download"
|
||||
msgstr "Transferir"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment_action_download.py:0
|
||||
#, python-format
|
||||
msgid "No attachment!"
|
||||
msgstr "Sem Anexo!"
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid "None attachment selected. Only binary attachments allowed."
|
||||
msgstr "Nenhum anexo selecionado. Somente anexos binários permitidos."
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/models/ir_attachment_action_download.py:0
|
||||
#, python-format
|
||||
msgid "There is no document found to download."
|
||||
msgstr "Não há nenhum documento encontrado para transferir."
|
||||
|
||||
#. module: attachment_zipped_download
|
||||
#. odoo-python
|
||||
#: code:addons/attachment_zipped_download/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "attachments.zip"
|
||||
msgstr "anexos.zip"
|
@ -1,2 +0,0 @@
|
||||
from . import ir_attachment
|
||||
from . import ir_attachment_action_download
|
@ -1,43 +0,0 @@
|
||||
# Copyright 2019 César Fernández Domínguez <cesfernandez@outlook.com>
|
||||
# Copyright 2022 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl)
|
||||
import zipfile
|
||||
from io import BytesIO
|
||||
|
||||
from odoo import _, models
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class IrAttachment(models.Model):
|
||||
_inherit = "ir.attachment"
|
||||
|
||||
def action_attachments_download(self):
|
||||
items = self.filtered(lambda x: x.type == "binary")
|
||||
if not items:
|
||||
raise UserError(
|
||||
_("None attachment selected. Only binary attachments allowed.")
|
||||
)
|
||||
ids = ",".join(map(str, items.ids))
|
||||
return {
|
||||
"type": "ir.actions.act_url",
|
||||
"url": "/web/attachment/download_zip?ids=%s" % (ids),
|
||||
"target": "self",
|
||||
}
|
||||
|
||||
def _create_temp_zip(self):
|
||||
zip_buffer = BytesIO()
|
||||
with zipfile.ZipFile(zip_buffer, "a", zipfile.ZIP_DEFLATED, False) as zip_file:
|
||||
for attachment in self:
|
||||
attachment.check("read")
|
||||
zip_file.writestr(
|
||||
attachment._compute_zip_file_name(),
|
||||
attachment.raw,
|
||||
)
|
||||
zip_buffer.seek(0)
|
||||
zip_file.close()
|
||||
return zip_buffer
|
||||
|
||||
def _compute_zip_file_name(self):
|
||||
"""Give a chance of easily changing the name of the file inside the ZIP."""
|
||||
self.ensure_one()
|
||||
return self.name
|
@ -1,54 +0,0 @@
|
||||
# Copyright 2023 Foodles (https://www.foodles.com/)
|
||||
# @author Pierre Verkest <pierreverkest84@gmail.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
from odoo import _, models
|
||||
|
||||
|
||||
class IrAttachmentActionDownloadMixin(models.AbstractModel):
|
||||
_name = "ir.attachment.action_download"
|
||||
_description = """
|
||||
Mixin to help download attachments linked to record(s).
|
||||
"""
|
||||
|
||||
def _get_downloadable_attachments(self):
|
||||
"""Give a chance to easily overwrite this method
|
||||
on sub modules to limit restict attachement able to downlaods
|
||||
|
||||
In some case we probably want the user download some specific
|
||||
document that are probably related to the current model
|
||||
|
||||
By default return all attachment link the the record.
|
||||
"""
|
||||
return self.env["ir.attachment"].search(
|
||||
[("res_model", "=", self._name), ("res_id", "in", self.ids)]
|
||||
)
|
||||
|
||||
def action_download_attachments(self):
|
||||
"""Return action to:
|
||||
* emit a warning message if no attachment found
|
||||
* download a file if only 1 file found
|
||||
* zip and download the list of attachment returns by `_get_downloadable_attachments`
|
||||
"""
|
||||
attachments = self._get_downloadable_attachments()
|
||||
if not attachments:
|
||||
title = _("No attachment!")
|
||||
message = _("There is no document found to download.")
|
||||
return {
|
||||
"type": "ir.actions.client",
|
||||
"tag": "display_notification",
|
||||
"params": {
|
||||
"type": "warning",
|
||||
"title": title,
|
||||
"message": message,
|
||||
"sticky": True,
|
||||
},
|
||||
}
|
||||
|
||||
if len(attachments) == 1:
|
||||
return {
|
||||
"target": "self",
|
||||
"type": "ir.actions.act_url",
|
||||
"url": "/web/content/%s?download=1" % attachments.id,
|
||||
}
|
||||
else:
|
||||
return attachments.action_attachments_download()
|
@ -1,8 +0,0 @@
|
||||
* César Fernández Domínguez <cesfernandez@outlook.com>
|
||||
|
||||
* `Tecnativa <https://www.tecnativa.com>`_:
|
||||
|
||||
* Víctor Martínez
|
||||
* Pedro M. Baeza
|
||||
|
||||
* Pierre Verkest <pierreverkest@gmail.com>
|
@ -1,4 +0,0 @@
|
||||
This module allows downloading multiple attachments as a zip file.
|
||||
|
||||
This also provide a helper class `IrAttachmentActionDownloadMixin`
|
||||
to be used by developer to add action method on models.
|
@ -1,78 +0,0 @@
|
||||
#. Go to *Settings > Technical > Database Structure > Attachments* and select some files.
|
||||
#. Go to *Actions > Download* and a zip file containing the selected files will be downloaded.
|
||||
|
||||
## For developer
|
||||
|
||||
You can reuse the `IrAttachmentActionDownloadMixin` on your
|
||||
favorite models::
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class StockPicking(models.Model):
|
||||
_name = "stock.picking"
|
||||
_inherit = ["stock.picking", "ir.attachment.action_download"]
|
||||
|
||||
|
||||
Then you can add an action button on list view line or on the action button
|
||||
(when multiple lines are selected) to download all files::
|
||||
|
||||
<odoo>
|
||||
<!--
|
||||
add a button on list view to download all attachement present
|
||||
on the given transfert
|
||||
-->
|
||||
<record id="vpicktree" model="ir.ui.view">
|
||||
<field name="inherit_id" ref="stock.vpicktree"/>
|
||||
<field name="name">stock.picking.tree download attachments</field>
|
||||
<field name="model">stock.picking</field>
|
||||
<field name="arch" type="xml">
|
||||
<field name="json_popover" position="after">
|
||||
<button name="action_download_attachments"
|
||||
type="object"
|
||||
icon="fa-download"
|
||||
string="Download attachment(s)"
|
||||
aria-label="Download Proof documents"
|
||||
class="float-right"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!--
|
||||
Add "Download attachments" item in the Action menu when
|
||||
multiple records are selected
|
||||
-->
|
||||
<record id="action_download_picking_attachements" model="ir.actions.server">
|
||||
<field name="name">Download attachments</field>
|
||||
<field name="model_id" ref="stock.model_stock_picking"/>
|
||||
<field name="binding_model_id" ref="stock.model_stock_picking"/>
|
||||
<field name="binding_view_types">list</field>
|
||||
<field name="state">code</field>
|
||||
<field name="code">
|
||||
action = records.action_download_attachments()
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
||||
|
||||
.. note::
|
||||
|
||||
Even you will be able to generate a zip file with multiple document with the
|
||||
same name it's advice to overwrite `_compute_zip_file_name` to improve the
|
||||
name. When a slash (`/`) is present in the path it will create a directory.
|
||||
This example will create a directory per stock.picking using its name::
|
||||
|
||||
class IrAttachment(models.Model):
|
||||
_inherit = "ir.attachment"
|
||||
|
||||
def _compute_zip_file_name(self):
|
||||
self.ensure_one()
|
||||
if self.res_model and self.res_model == "stock.picking":
|
||||
return (
|
||||
self.env[self.res_model]
|
||||
.browse(self.res_id)
|
||||
.display_name.replace("/", "-")
|
||||
+ "/"
|
||||
+ self.name
|
||||
)
|
||||
return super()._compute_zip_file_name()
|
Binary file not shown.
Before Width: | Height: | Size: 9.2 KiB |
@ -1,510 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
||||
<title>Attachment Zipped Download</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="attachment-zipped-download">
|
||||
<h1 class="title">Attachment Zipped Download</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:4163544eb16787f39f46edcd97305586594a6f708c1e489908d344467c82483e
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/knowledge/tree/16.0/attachment_zipped_download"><img alt="OCA/knowledge" src="https://img.shields.io/badge/github-OCA%2Fknowledge-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/knowledge-16-0/knowledge-16-0-attachment_zipped_download"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/knowledge&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module allows downloading multiple attachments as a zip file.</p>
|
||||
<p>This also provide a helper class <cite>IrAttachmentActionDownloadMixin</cite>
|
||||
to be used by developer to add action method on models.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#usage" id="toc-entry-1">Usage</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-2">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="toc-entry-3">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="toc-entry-4">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="toc-entry-5">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="toc-entry-6">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
|
||||
<ol class="arabic simple">
|
||||
<li>Go to <em>Settings > Technical > Database Structure > Attachments</em> and select some files.</li>
|
||||
<li>Go to <em>Actions > Download</em> and a zip file containing the selected files will be downloaded.</li>
|
||||
</ol>
|
||||
<p>## For developer</p>
|
||||
<p>You can reuse the <cite>IrAttachmentActionDownloadMixin</cite> on your
|
||||
favorite models:</p>
|
||||
<pre class="literal-block">
|
||||
from odoo import models
|
||||
|
||||
|
||||
class StockPicking(models.Model):
|
||||
_name = "stock.picking"
|
||||
_inherit = ["stock.picking", "ir.attachment.action_download"]
|
||||
</pre>
|
||||
<p>Then you can add an action button on list view line or on the action button
|
||||
(when multiple lines are selected) to download all files:</p>
|
||||
<pre class="literal-block">
|
||||
<odoo>
|
||||
<!--
|
||||
add a button on list view to download all attachement present
|
||||
on the given transfert
|
||||
-->
|
||||
<record id="vpicktree" model="ir.ui.view">
|
||||
<field name="inherit_id" ref="stock.vpicktree"/>
|
||||
<field name="name">stock.picking.tree download attachments</field>
|
||||
<field name="model">stock.picking</field>
|
||||
<field name="arch" type="xml">
|
||||
<field name="json_popover" position="after">
|
||||
<button name="action_download_attachments"
|
||||
type="object"
|
||||
icon="fa-download"
|
||||
string="Download attachment(s)"
|
||||
aria-label="Download Proof documents"
|
||||
class="float-right"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!--
|
||||
Add "Download attachments" item in the Action menu when
|
||||
multiple records are selected
|
||||
-->
|
||||
<record id="action_download_picking_attachements" model="ir.actions.server">
|
||||
<field name="name">Download attachments</field>
|
||||
<field name="model_id" ref="stock.model_stock_picking"/>
|
||||
<field name="binding_model_id" ref="stock.model_stock_picking"/>
|
||||
<field name="binding_view_types">list</field>
|
||||
<field name="state">code</field>
|
||||
<field name="code">
|
||||
action = records.action_download_attachments()
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
</pre>
|
||||
<div class="admonition note">
|
||||
<p class="first admonition-title">Note</p>
|
||||
<p>Even you will be able to generate a zip file with multiple document with the
|
||||
same name it’s advice to overwrite <cite>_compute_zip_file_name</cite> to improve the
|
||||
name. When a slash (<cite>/</cite>) is present in the path it will create a directory.
|
||||
This example will create a directory per stock.picking using its name:</p>
|
||||
<pre class="last literal-block">
|
||||
class IrAttachment(models.Model):
|
||||
_inherit = "ir.attachment"
|
||||
|
||||
def _compute_zip_file_name(self):
|
||||
self.ensure_one()
|
||||
if self.res_model and self.res_model == "stock.picking":
|
||||
return (
|
||||
self.env[self.res_model]
|
||||
.browse(self.res_id)
|
||||
.display_name.replace("/", "-")
|
||||
+ "/"
|
||||
+ self.name
|
||||
)
|
||||
return super()._compute_zip_file_name()
|
||||
</pre>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#toc-entry-2">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/knowledge/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/knowledge/issues/new?body=module:%20attachment_zipped_download%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#toc-entry-3">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-4">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Tecnativa</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-5">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>César Fernández Domínguez <<a class="reference external" href="mailto:cesfernandez@outlook.com">cesfernandez@outlook.com</a>></li>
|
||||
<li><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:<ul>
|
||||
<li>Víctor Martínez</li>
|
||||
<li>Pedro M. Baeza</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Pierre Verkest <<a class="reference external" href="mailto:pierreverkest@gmail.com">pierreverkest@gmail.com</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#toc-entry-6">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||
<p>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.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/knowledge/tree/16.0/attachment_zipped_download">OCA/knowledge</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,4 +0,0 @@
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl)
|
||||
|
||||
from . import test_attachment_zipped_download
|
||||
from . import test_ir_attachment_action_download
|
@ -1,9 +0,0 @@
|
||||
# Copyright 2023 Foodles (https://www.foodles.com/)
|
||||
# @author Pierre Verkest <pierreverkest84@gmail.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
from odoo import models
|
||||
|
||||
|
||||
class ResPartner(models.Model):
|
||||
_name = "res.partner"
|
||||
_inherit = ["res.partner", "ir.attachment.action_download"]
|
@ -1,93 +0,0 @@
|
||||
# Copyright 2022-2023 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
import base64
|
||||
from unittest import TestCase
|
||||
|
||||
from odoo.exceptions import AccessError
|
||||
from odoo.tests import HttpCase, SavepointCase, new_test_user
|
||||
|
||||
|
||||
class TestAttachmentZippedDownloadBase(TestCase):
|
||||
@classmethod
|
||||
def _create_attachment(cls, env, user, name, model=False, res_id=False):
|
||||
return (
|
||||
env["ir.attachment"]
|
||||
.with_user(user)
|
||||
.create(
|
||||
{
|
||||
"name": name,
|
||||
"datas": base64.b64encode(b"\xff data"),
|
||||
"res_model": model,
|
||||
"res_id": res_id,
|
||||
}
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
class TestAttachmentZippedDownload(HttpCase, TestAttachmentZippedDownloadBase):
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
ctx = {
|
||||
"mail_create_nolog": True,
|
||||
"mail_create_nosubscribe": True,
|
||||
"mail_notrack": True,
|
||||
"no_reset_password": True,
|
||||
}
|
||||
self.user = new_test_user(
|
||||
self.env,
|
||||
login="test-user",
|
||||
context=ctx,
|
||||
)
|
||||
test_1 = self._create_attachment(self.env, self.user, "test1.txt")
|
||||
test_2 = self._create_attachment(self.env, self.user, "test2.txt")
|
||||
self.attachments = test_1 + test_2
|
||||
|
||||
def test_action_attachments_download(self):
|
||||
self.authenticate("test-user", "test-user")
|
||||
res = self.attachments.action_attachments_download()
|
||||
response = self.url_open(res["url"], timeout=20)
|
||||
self.assertEqual(response.status_code, 200)
|
||||
|
||||
|
||||
class TestAttachmentZipped(SavepointCase, TestAttachmentZippedDownloadBase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
ctx = {
|
||||
"mail_create_nolog": True,
|
||||
"mail_create_nosubscribe": True,
|
||||
"mail_notrack": True,
|
||||
"no_reset_password": True,
|
||||
}
|
||||
cls.user = new_test_user(
|
||||
cls.env,
|
||||
login="test-user",
|
||||
password="test-user",
|
||||
groups="base.group_user,base.group_partner_manager",
|
||||
context=ctx,
|
||||
)
|
||||
test_1 = cls._create_attachment(cls.env, cls.user, "test1.txt")
|
||||
test_2 = cls._create_attachment(cls.env, cls.user, "test2.txt")
|
||||
test_3 = cls._create_attachment(
|
||||
cls.env,
|
||||
cls.user,
|
||||
"test3.txt",
|
||||
model="res.partner",
|
||||
res_id=cls.user.partner_id.id,
|
||||
)
|
||||
cls.attachments = test_1 + test_2 + test_3
|
||||
|
||||
def test_create_temp_zip(self):
|
||||
res = self.attachments._create_temp_zip()
|
||||
self.assertTrue(res)
|
||||
|
||||
def test_create_temp_zip_access_denined(self):
|
||||
attachments = self.attachments | self._create_attachment(
|
||||
self.env,
|
||||
self.uid,
|
||||
"test4.txt",
|
||||
model="ir.ui.view",
|
||||
res_id=self.env.ref("base.view_view_form").id,
|
||||
)
|
||||
with self.assertRaises(AccessError):
|
||||
attachments._create_temp_zip()
|
@ -1,81 +0,0 @@
|
||||
# Copyright 2023 Foodles (https://www.foodles.com/)
|
||||
# @author Pierre Verkest <pierreverkest84@gmail.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
from odoo_test_helper import FakeModelLoader
|
||||
|
||||
from odoo.tests import SavepointCase
|
||||
|
||||
from .test_attachment_zipped_download import TestAttachmentZippedDownloadBase
|
||||
|
||||
|
||||
class TestMixin(SavepointCase, TestAttachmentZippedDownloadBase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.loader = FakeModelLoader(cls.env, cls.__module__)
|
||||
cls.addClassCleanup(cls.loader.restore_registry)
|
||||
cls.loader.backup_registry()
|
||||
|
||||
# Imported Test model must be done after the backup_registry
|
||||
from .models.res_partner import ResPartner
|
||||
|
||||
cls.loader.update_registry((ResPartner,))
|
||||
|
||||
cls.partner_1 = cls.env.ref("base.res_partner_1")
|
||||
cls.partner_2 = cls.env.ref("base.res_partner_2")
|
||||
cls.partner_3 = cls.env.ref("base.res_partner_3")
|
||||
|
||||
cls.partner_1_f1 = cls._create_attachment(
|
||||
cls.env,
|
||||
cls.env.uid,
|
||||
"partner_1-f1.txt",
|
||||
model="res.partner",
|
||||
res_id=cls.partner_1.id,
|
||||
)
|
||||
cls.partner_1_f2 = cls._create_attachment(
|
||||
cls.env,
|
||||
cls.env.uid,
|
||||
"partner_1-f2.txt",
|
||||
model="res.partner",
|
||||
res_id=cls.partner_1.id,
|
||||
)
|
||||
cls.partner_2_f1 = cls._create_attachment(
|
||||
cls.env,
|
||||
cls.env.uid,
|
||||
"partner_2-f1.txt",
|
||||
model="res.partner",
|
||||
res_id=cls.partner_2.id,
|
||||
)
|
||||
|
||||
def test_action_download_attachments_no_attachment(self):
|
||||
action = self.partner_3.action_download_attachments()
|
||||
self.assertEqual(action["type"], "ir.actions.client")
|
||||
self.assertEqual(action["tag"], "display_notification")
|
||||
|
||||
def test_action_download_attachments_one_attachment(self):
|
||||
action = (self.partner_2 | self.partner_3).action_download_attachments()
|
||||
self.assertEqual(action["type"], "ir.actions.act_url")
|
||||
self.assertEqual(action["target"], "self")
|
||||
self.assertEqual(
|
||||
action["url"], "/web/content/%s?download=1" % self.partner_2_f1.id
|
||||
)
|
||||
|
||||
def test_action_download_attachments_two_attachment_one_record(self):
|
||||
action = (self.partner_1).action_download_attachments()
|
||||
self.assertEqual(action["type"], "ir.actions.act_url")
|
||||
self.assertEqual(action["target"], "self")
|
||||
self.assertTrue(action["url"].startswith("/web/attachment/download_zip?ids="))
|
||||
ids = sorted(map(int, action["url"].split("=")[1].split(",")))
|
||||
self.assertEqual(ids, (self.partner_1_f1 | self.partner_1_f2).ids)
|
||||
|
||||
def test_action_download_attachments_three_attachment_n_records(self):
|
||||
action = (
|
||||
self.partner_1 | self.partner_2 | self.partner_3
|
||||
).action_download_attachments()
|
||||
self.assertEqual(action["type"], "ir.actions.act_url")
|
||||
self.assertEqual(action["target"], "self")
|
||||
self.assertTrue(action["url"].startswith("/web/attachment/download_zip?ids="))
|
||||
ids = sorted(map(int, action["url"].split("=")[1].split(",")))
|
||||
self.assertEqual(
|
||||
ids, (self.partner_1_f1 + self.partner_1_f2 + self.partner_2_f1).ids
|
||||
)
|
@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<record id="action_attachments_download" model="ir.actions.server">
|
||||
<field name="name">Download</field>
|
||||
<field name="model_id" ref="base.model_ir_attachment" />
|
||||
<field name="binding_model_id" ref="base.model_ir_attachment" />
|
||||
<field name="state">code</field>
|
||||
<field name="code">
|
||||
if records:
|
||||
action = records.action_attachments_download()
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
@ -1,135 +0,0 @@
|
||||
===================
|
||||
Documents Knowledge
|
||||
===================
|
||||
|
||||
..
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:c1488375286777cfdb9187452f29e3f8a28157ba0f11fa21061916703e669afc
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fknowledge-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/knowledge/tree/16.0/document_knowledge
|
||||
:alt: OCA/knowledge
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/knowledge-16-0/knowledge-16-0-document_knowledge
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/knowledge&target_branch=16.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This module is the base for any knowledge and document management application.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
To set up this module, you need to go to:
|
||||
|
||||
* Knowledge / Configuration / Settings
|
||||
|
||||
From this menu you'll have a central access to install the apps that belong
|
||||
to Knowledge.
|
||||
|
||||
* Check *Attachments List and Document Indexation* if you want to install the
|
||||
module that allows users to attach documents to any model.
|
||||
* Check *Manage attachments centrally* if you want all users to be able to
|
||||
access to the all attachments to which they have read permissions, from the
|
||||
menu *Knowledge / Documents*
|
||||
|
||||
If you want to grant Central Access to Documents only to some users:
|
||||
|
||||
#. Go to *Settings/Activate the developer mode*. Only a user with
|
||||
*Administration / Settings* permissions can do that.
|
||||
|
||||
#. Go to *Settings / Users & Companies / Users* and set the checkbox
|
||||
*Central access to Documents* to the selected users.
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
This module adds a new top level menu *Knowledge*
|
||||
|
||||
Users with permission *Central access to Documents* can access in
|
||||
*Knowledge/Documents* to all the documents attached to records of any model
|
||||
for which they have read permission.
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/knowledge/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/knowledge/issues/new?body=module:%20document_knowledge%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* OpenERP SA
|
||||
* MONK Software
|
||||
* Tecnativa
|
||||
* ForgeFlow
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Odoo SA <info@odoo.com>
|
||||
* Savoir-faire Linux <support@savoirfairelinux.com>
|
||||
* Gervais Naoussi <gervaisnaoussi@gmail.com>
|
||||
* Leonardo Donelli <leonardo.donelli@monksoftware.it>
|
||||
* Maxime Chambreuil <mchambreuil@ursainfosystems.com>
|
||||
* Fayez Qandeel
|
||||
* Iván Todorovich <ivan.todorovich@gmail.com>
|
||||
* Jordi Ballester <jordi.ballester@forgeflow.com>
|
||||
* Marie Lejeune <marie.lejeune@acsone.eu>
|
||||
* `Tecnativa <https://www.tecnativa.com>`_:
|
||||
|
||||
* Vicent Cubells
|
||||
* Ernesto Tejeda
|
||||
|
||||
Trobz
|
||||
|
||||
* Dung Tran <dungtd@trobz.com>
|
||||
|
||||
Other credits
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
The development of this module has been financially supported by:
|
||||
|
||||
* Camptocamp
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
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.
|
||||
|
||||
This module is part of the `OCA/knowledge <https://github.com/OCA/knowledge/tree/16.0/document_knowledge>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
@ -1,4 +0,0 @@
|
||||
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import models
|
@ -1,25 +0,0 @@
|
||||
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
{
|
||||
"name": "Documents Knowledge",
|
||||
"version": "16.0.1.1.0",
|
||||
"author": "OpenERP SA,"
|
||||
"MONK Software, "
|
||||
"Tecnativa, "
|
||||
"ForgeFlow, "
|
||||
"Odoo Community Association (OCA)",
|
||||
"category": "Knowledge",
|
||||
"license": "AGPL-3",
|
||||
"website": "https://github.com/OCA/knowledge",
|
||||
"depends": ["base"],
|
||||
"data": [
|
||||
"data/ir_module_category.xml",
|
||||
"security/document_knowledge_security.xml",
|
||||
"data/res_users.xml",
|
||||
"views/document_knowledge.xml",
|
||||
"views/res_config.xml",
|
||||
],
|
||||
"demo": ["demo/document_knowledge.xml"],
|
||||
"installable": True,
|
||||
"application": True,
|
||||
}
|
@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<record model="ir.module.category" id="module_category_knowledge">
|
||||
<field name="name">Documents Knowledge</field>
|
||||
<field name="description">Manage documents and knowledge-related
|
||||
applications
|
||||
</field>
|
||||
<field name="sequence">30</field>
|
||||
</record>
|
||||
</odoo>
|
@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<record id="base.user_admin" model="res.users">
|
||||
<field
|
||||
name="groups_id"
|
||||
eval="[(4,ref('document_knowledge.group_document_user'))]"
|
||||
/>
|
||||
</record>
|
||||
</odoo>
|
@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo noupdate="1">
|
||||
<record id="base.user_demo" model="res.users">
|
||||
<field
|
||||
name="groups_id"
|
||||
eval="[(4,ref('document_knowledge.group_document_user'))]"
|
||||
/>
|
||||
</record>
|
||||
</odoo>
|
@ -1,166 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-13 13:00+0000\n"
|
||||
"PO-Revision-Date: 2016-09-09 12:26+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-knowledge-9-0/"
|
||||
"language/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "ማስተካከያዎች"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "ማስተካከያዎች"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "ማመልከት"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "መሰረዝ"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última actualización por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última actualización en"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "ወይም"
|
@ -1,172 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "الإعدادات"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "الإعدادات"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "المعرفة"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "المستندات"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "ضبط المعرفة"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "المعرفة"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "المعرفة وإدارة المستندات"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "إدارة المستندات"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "تطبيق"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "إلغاء"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "أنشئ بواسطة"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "أنشئ في"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "المعرف"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "آخر تحديث في"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "أو"
|
@ -1,168 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Настройка"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Настройка"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Знания"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Документи"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Документи"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Знания"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Приложи"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Откажи"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Създадено от"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Създадено на"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Последно обновено от"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Последно обновено на"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "или"
|
@ -1,163 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfiguracija"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguracija"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Znanje"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Znanje"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Znanje"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Primjeni"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Otkaži"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Kreirao"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Kreirano"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "ili"
|
@ -1,162 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuració"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuració"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Coneixement"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documents"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Documents"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Coneixement"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancel·la"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creat per"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creat el"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Darrera Actualització per"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Darrera Actualització el"
|
@ -1,171 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavení"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Nastavení"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Znalosti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokumenty"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Nastavit znalosti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Znalosti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Správa znalostí a dokumentů"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Spravovat dokumenty"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Použít"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Zrušit"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Vytvořil(a)"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Vytvořeno"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Naposled upraveno"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Naposled upraveno"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "nebo"
|
@ -1,168 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Viden"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokumenter"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Dokumenter"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Viden"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Anvend"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Annuller"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Oprettet af"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Oprettet den"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "Id"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Sidst opdateret af"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Sidst opdateret den"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "eller"
|
@ -1,215 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Niki Waibel <niki.waibel@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-28 03:34+0000\n"
|
||||
"PO-Revision-Date: 2017-03-28 03:34+0000\n"
|
||||
"Last-Translator: Niki Waibel <niki.waibel@gmail.com>, 2017\n"
|
||||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
"Workflow zu Dokumenten pro Kategorie hinzufügen.\n"
|
||||
"- Das Modul document_page_approval wird installiert."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
#, fuzzy
|
||||
msgid "Attachment"
|
||||
msgstr "ir.attachment"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "knowledge.config.settings"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Wissender Benutzer"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
"Dokumentindizierung, Volltextrecherche in Dokumenten.\n"
|
||||
"- Das Modul document wird installiert."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokumente"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Konfiguriere Dokumentenmanagement"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr "Gruppiert durch"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Dokumente"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Knowledge und Dokumenten Management"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr "Dokumentseiten verwalten (Wiki)"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr "Dokumentenfreigabe verwalten"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr "Modell"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
"Stelle Dokumentenseite und Kategorie als Wiki zur Verfügung.\n"
|
||||
"- Das Modul document_page wird installiert."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Attach files from an external DMS into Odoo"
|
||||
#~ msgstr "Dateien aus externem DMS in Odoo einbinden"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Connect Odoo with a CMIS compatible server to attach files\n"
|
||||
#~ "to an Odoo record.\n"
|
||||
#~ "- This installs the module cmis_read."
|
||||
#~ msgstr ""
|
||||
#~ "Verknüpfe Odoo mit einem CMIS-kompatiblen Server, um \n"
|
||||
#~ "Dateien an Odoo-Datensätze anzuhängen.\n"
|
||||
#~ "- Das Modul cmis-read wird installiert."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Connect Odoo with a CMIS compatible server to store files.\n"
|
||||
#~ "- This installs the module cmis_write."
|
||||
#~ msgstr ""
|
||||
#~ "Verknüpfe Odoo mit einem CMIS-kompatiblen Server, um \n"
|
||||
#~ "Dateien dort abzuspeichern.\n"
|
||||
#~ "- Das Modul cmis-write wird installiert."
|
||||
|
||||
#~ msgid "Connect with an external DMS"
|
||||
#~ msgstr "Mit externem DMS verbinden"
|
||||
|
||||
#~ msgid "Store attachments in an external DMS instead of the Odoo Filestore"
|
||||
#~ msgstr "Speichere Anhänge auf externem DMS anstelle der Odoo-Dateiablage"
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Dokumentenverwaltung"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Anwenden"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Abbrechen"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Erstellt durch"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Erstellt am"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Anzeigename"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Zuletzt aktualisiert von"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#~ msgid "Using CMIS"
|
||||
#~ msgstr "Verwende CMIS"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "oder"
|
@ -1,136 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * document_knowledge
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
@ -1,168 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/oca/teams/23907/el/)\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Ρυθμίσεις"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Ρυθμίσεις"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Γνωσιακή"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Έγγραφα"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Έγγραφα"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Γνωσιακή"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Εφαρμογή"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Ακύρωση"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Δημιουργήθηκε από"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "Κωδικός"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Τελευταία Αναβαθμίστηκε από"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Τελευταία Αναβαθμίστηκε στις"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "ή"
|
@ -1,156 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-13 13:00+0000\n"
|
||||
"PO-Revision-Date: 2016-09-09 12:26+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-"
|
||||
"knowledge-9-0/language/el_GR/)\n"
|
||||
"Language: el_GR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Δημιουργήθηκε από "
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "Κωδικός"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Τελευταία ενημέρωση από"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Τελευταία ενημέρωση στις"
|
@ -1,150 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-09 18:03+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 18:04+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: English (Australia) (http://www.transifex.com/oca/OCA-"
|
||||
"knowledge-9-0/language/en_AU/)\n"
|
||||
"Language: en_AU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Apply"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancel"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "or"
|
@ -1,169 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/"
|
||||
"teams/23907/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuration"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuration"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Knowledge"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documents"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Documents"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Knowledge"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Apply"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancel"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Created by"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Created on"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Last Updated by"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Last Updated on"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "or"
|
@ -1,187 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2023-09-05 22:41+0000\n"
|
||||
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
"Añadir flujo de trabajo en los documentos por categoría.\n"
|
||||
"‐ Esto instala el módulo document_page_approval."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Archivo adjunto"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr "Lista de Archivos Adjuntos e Indexación de Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr "Acceso central a Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes de configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Documentar el conocimiento del usuario"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
"Indexación de documentos, búsqueda de texto completo en archivos adjuntos.\n"
|
||||
"‐ Esto instala el módulo attachment_indexation."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Conocimiento de los documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr "Agrupado por"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Gestión de documentos y de la base de conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr "Gestionar páginas de documento (Wiki)"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Gestionar documentos y aplicaciones relacionadas con el conocimiento\n"
|
||||
" aplicaciones\n"
|
||||
" "
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr "Gestionar aprobación de documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr "Modelo"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
"Proporciona la página del documento y la categoría como wiki.\n"
|
||||
"‐ Esto instala el módulo document_page."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr "Modelo del Recurso"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr "Ajustes"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
"Al configurar este campo, todos los usuarios podrán gestionar los archivos "
|
||||
"adjuntos de forma centralizada, desde el menú Conocimiento del documento/"
|
||||
"Documentos."
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Gestión de documentos"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Aplicar"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nombre mostrado"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Modificado por última vez el"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última actualización de"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última actualización en"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "o"
|
@ -1,172 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_AR/)\n"
|
||||
"Language: es_AR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Conocimientos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Configurar Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Conocimientos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Gestión de Documentos y Conocimientos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Administrar documentos"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Aplicar"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última actualización realizada por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última actualización el"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "o"
|
@ -1,145 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-09 18:03+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 18:05+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-"
|
||||
"knowledge-9-0/language/es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
@ -1,155 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_CO/)\n"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Aplicar"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "o"
|
@ -1,169 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Aplicar"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Ultima actualización por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Ultima actualización en"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "o"
|
@ -1,157 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_DO/)\n"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Aplicar"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID (identificación)"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "ó"
|
@ -1,157 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_EC/)\n"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Gestión de Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Gestión de Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Gestión de Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Aplicar"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "o"
|
@ -1,159 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-13 13:00+0000\n"
|
||||
"PO-Revision-Date: 2016-09-09 12:25+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-"
|
||||
"knowledge-9-0/language/es_ES/)\n"
|
||||
"Language: es_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última actualización por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última actualización en"
|
@ -1,169 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_MX/)\n"
|
||||
"Language: es_MX\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Aplicar"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Ultima actualización por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Ultima actualización en"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "o"
|
@ -1,150 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_PY/)\n"
|
||||
"Language: es_PY\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
@ -1,163 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Conocimiento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado en"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Ultima actualización por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Ultima actualización en"
|
@ -1,158 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2014
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-09 18:03+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 18:05+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Estonian (http://www.transifex.com/oca/OCA-knowledge-9-0/"
|
||||
"language/et/)\n"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Seadistused"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Seadistused"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Kinnita"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Loobu"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Loodud"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "või"
|
@ -1,151 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# Oihane Crucelaegui <oihanecruce@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-09 18:03+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 18:04+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/oca/OCA-knowledge-9-0/"
|
||||
"language/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Ezeztatu"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "edo"
|
@ -1,168 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "پیکربندی"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "پیکربندی"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "دانش"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "اسناد"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "اسناد"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "دانش"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "اعمال"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "لغو"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "ایجاد شده توسط"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "ایجاد شده در"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "شناسه"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "آخرین به روز رسانی توسط"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "آخرین به روز رسانی در"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "یا"
|
@ -1,177 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfiguraatio"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguraatio"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Tietämys"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokumentit"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Konfiguroi tietämyksenhallinta -moduuli"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Tietämys"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Tietämyksen ja asiakirjojen -hallinta"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Hallitse dokumentteja"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Hyväksy"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Peruuta"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Luonut"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Luotu"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nimi"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Viimeksi muokattu"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Viimeksi päivitetty"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "tai"
|
@ -1,222 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 14:19+0000\n"
|
||||
"Last-Translator: Vincent Hatakeyama <vincent+github@hatakeyama.fr>\n"
|
||||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
"Ajouter un processus sur les documents par catégorie.\n"
|
||||
"- Ceci installe le module document_page_approval."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Pièce jointe"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr "Liste des pièces jointes et indexation de documents"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr "Accès central aux documents"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Paramétrage"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuration"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Utilisateur de connaissances"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
"Indexation des documents, recherche dans tout le texte des pièces jointes.\n"
|
||||
"- Ceci installe le module attachment_indexation."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documents"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Configurer la base de connaissances"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr "Regrouper par"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Connaissances"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Base de connaissance et documentaire"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr "Gérer des pages (wiki)"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Gérez les documents et les applications liées à\n"
|
||||
" la connaissance\n"
|
||||
" "
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr "Gérer l’approbation sur les pages"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr "Modèle"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
"Fournir les pages et catégories de documents comme un wiki.\n"
|
||||
"- Ceci installe le module document_page."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr "Modèle de la ressource"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr "Paramètres"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
"Quand ce champ est spécifié, tous les utilisateurs pourront gérer "
|
||||
"centralement leurs pièces jointes, à partir du menu Connaissances / "
|
||||
"Documents."
|
||||
|
||||
#~ msgid "Attach files from an external DMS into Odoo"
|
||||
#~ msgstr "Joindre des fichiers à partir d'un SGD externe à Odoo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Connect Odoo with a CMIS compatible server to attach files\n"
|
||||
#~ "to an Odoo record.\n"
|
||||
#~ "- This installs the module cmis_read."
|
||||
#~ msgstr ""
|
||||
#~ "Connecter Odoo avec un serveur compatible CMIS pour joindre des fichiers\n"
|
||||
#~ "à un enregistrement Odoo.\n"
|
||||
#~ "- Ceci installe le module cmis_read."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Connect Odoo with a CMIS compatible server to store files.\n"
|
||||
#~ "- This installs the module cmis_write."
|
||||
#~ msgstr ""
|
||||
#~ "Connectez Odoo avec un serveur compatible CMIS pour enregistrer les "
|
||||
#~ "fichiers.\n"
|
||||
#~ "- Cecu installe le module cmis_write."
|
||||
|
||||
#~ msgid "Connect with an external DMS"
|
||||
#~ msgstr "Connecter avec un SGD externe"
|
||||
|
||||
#~ msgid "Store attachments in an external DMS instead of the Odoo Filestore"
|
||||
#~ msgstr ""
|
||||
#~ "Enregistrer les pièces jointes dans un SGD externe au lieu du stockage de "
|
||||
#~ "fichier Odoo"
|
||||
|
||||
#~ msgid "The database object this attachment will be attached to."
|
||||
#~ msgstr ""
|
||||
#~ "L’objet de la base de données auquel cette pièce-jointe sera attachée."
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Gérer les documents"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Appliquer"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Annuler"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Créé par"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Créé le"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nom affiché"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Dernière mise à jour le"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Dernière modification par"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Dernière mise à jour le"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "ou"
|
@ -1,165 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-09 18:03+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 18:05+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-"
|
||||
"knowledge-9-0/language/fr_CA/)\n"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Appliquer"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Annuler"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Créé par"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Créé le"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "Identifiant"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Dernière mise à jour par"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Dernière mise à jour le"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "ou"
|
@ -1,165 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Coñecemento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Coñecemento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creado o"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "ültima actualización por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última actualización en"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "ou"
|
@ -1,149 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Gujarati (https://www.transifex.com/oca/teams/23907/gu/)\n"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "રુપરેખાંકન"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "રુપરેખાંકન"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "દસ્તાવેજો"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "દસ્તાવેજો"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "રદ કરો"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ઓળખ"
|
@ -1,168 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "הגדרות תצורה"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "הגדרות תצורה"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "ידע"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "מסמכים"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "מסמכים"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "ידע"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "החל"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "בטל"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "נוצר על ידי"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "נוצר ב-"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "מזהה"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "עודכן לאחרונה על ידי"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "עודכן לאחרונה על"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "או"
|
@ -1,167 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 13.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2020-10-13 10:08+0000\n"
|
||||
"Last-Translator: Yves Goldberg <admin@ygol.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: he_IL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
|
||||
"n % 10 == 0) ? 2 : 3));\n"
|
||||
"X-Generator: Weblate 3.10\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
"הוסף תהליך עבודה על מסמכים בכל קטגוריה.\n"
|
||||
"- התקנה של המודול document_page_approval."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "קובץ מצורף"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr "רשימת קבצים מצורפים ואינדקס מסמכים"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr "גישה מרכזית למסמכים"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "הגדרות תצורה"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "הגדרות"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
"אינדקס מסמכים, חיפוש טקסט מלא של קבצים מצורפים.\n"
|
||||
"- התקנה של המודול attachment_indexation."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "מסמכים"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "מסמכים"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr "קבץ לפי"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "ידע"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "ניהול ידע ומסמכים"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Attach files from an external DMS into Odoo"
|
||||
#~ msgstr "צירוף מסמכים מתכנת ניהול חיצונית (DMS) לתוך Odoo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Connect Odoo with a CMIS compatible server to attach files\n"
|
||||
#~ "to an Odoo record.\n"
|
||||
#~ "- This installs the module cmis_read."
|
||||
#~ msgstr ""
|
||||
#~ "חבר את Odoo לשרת תואם CMIS כדי לצרף קבצים\n"
|
||||
#~ "לOdoo.\n"
|
||||
#~ "- התקנה של המודול cmis_read."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Connect Odoo with a CMIS compatible server to store files.\n"
|
||||
#~ "- This installs the module cmis_write."
|
||||
#~ msgstr ""
|
||||
#~ "חבר את Odoo לשרת תואם CMIS לאחסון קבצים.\n"
|
||||
#~ "- התקנה של המודול cmis_write."
|
||||
|
||||
#~ msgid "Connect with an external DMS"
|
||||
#~ msgstr "קישור ל- DMS תכנת ניהול מסמכים חיצונית"
|
@ -1,147 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Hindi (https://www.transifex.com/oca/teams/23907/hi/)\n"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "कॉन्फ़िगरेशन"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "कॉन्फ़िगरेशन"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "ज्ञान"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "ज्ञान"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "ज्ञान"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "रद्द"
|
@ -1,172 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Postavke"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Znanje"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokumenti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Dokumenti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Znanje"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Upravljanje znanjem i dokumentima"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Dokumenti"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Primjeni"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Odustani"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Kreirao"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Vrijeme kreiranja"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Promijenio"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Vrijeme promjene"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "ili"
|
@ -1,171 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Beállítások"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Beállítások"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Tudás"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokumentumok"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Tudástár beállítása"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Tudás"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Tudástár és dokumentum kezelés"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Dokumentum kezelés"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Alkalmaz"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Mégsem"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Készítette"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Létrehozás dátuma"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "Azonosító ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Utoljára frissítve, által"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Utoljára frissítve ekkor"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "vagy"
|
@ -1,148 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-09 18:03+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 18:05+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Armenian (http://www.transifex.com/oca/OCA-knowledge-9-0/"
|
||||
"language/hy/)\n"
|
||||
"Language: hy\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Կոնֆիգուրացիա"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Կոնֆիգուրացիա"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Ավելացնել"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Հրաժարվել"
|
@ -1,167 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# Dhaman <dhaman@indonesian-odoo.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-09 18:03+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 18:04+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-knowledge-9-0/"
|
||||
"language/id/)\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurasi"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Konfigurasi"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Terapkan"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Batalkan"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Dibuat oleh"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Dibuat pada"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Diperbaharui oleh"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Diperbaharui pada"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "atau"
|
@ -1,147 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-09 18:03+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 18:05+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Icelandic (http://www.transifex.com/oca/OCA-knowledge-9-0/"
|
||||
"language/is/)\n"
|
||||
"Language: is\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Búið til af"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "Auðkenni"
|
@ -1,186 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2023-09-20 19:38+0000\n"
|
||||
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
"Aggiungere un workflow sul documento per categoria.\n"
|
||||
"- Questo installa il modulo document_page_approval."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Allegato"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr "Elenco allegati e indicizzazione documenti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr "Accesso centralizzato ai documenti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Impostazioni di configurazione"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configurazione"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Utente documenti conoscenza"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
"Indicizzazione documenti, ricerca nel testo degli allegati.\n"
|
||||
"- Questo installa il modulo attachment_indexation."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documenti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Documeti conoscenza"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr "Raggruppa per"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Know how"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Knowledge e Gestione documentale"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr "Gestione pagine documenti (Wiki)"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Gestione documenti e applicazioni\n"
|
||||
" relative alle conoscenze\n"
|
||||
" "
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr "Gestione approvazione documenti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr "Modello"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
"Fornisce pagina e categoria documento come una wiki.\n"
|
||||
"- Questo installa il modulo document_page."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr "Modello risorsa"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr "Impostazioni"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
"Quando viene impostato questo campo tutti gli utenti potranno gestire gli "
|
||||
"allegati centralmente, dal menu Documento conoscenza/Documenti."
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Gestione documenti"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Salva"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Annulla"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creato da"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creato il"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nome da visualizzare"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima modifica il"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Ultima modifica di"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Ultima modifica il"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "o"
|
@ -1,168 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "設定"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "設定"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "ナレッジ"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "文書"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "文書"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "ナレッジ"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "適用"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "取消"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "作成者"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "作成日"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "最終更新者"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "最終更新日"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "または"
|
@ -1,151 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-09 18:03+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 18:05+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Georgian (http://www.transifex.com/oca/OCA-knowledge-9-0/"
|
||||
"language/ka/)\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "კონფიგურაცია"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "კონფიგურაცია"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "გააქტიურება"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "შეწყვეტა"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "იდენტიფიკატორი"
|
@ -1,171 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/oca/teams/23907/kab/)\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Tawila"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Tawila"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Tamusni"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Arraten"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Swel Tamusni"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Tamusni"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Asefrek n tmusni d warraten"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Sefrek arraten"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Snes"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Sefsex"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Yerna-t"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Yerna di"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "Asulay"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "neɣ"
|
@ -1,145 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-09 18:03+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 18:05+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Kazakh (http://www.transifex.com/oca/OCA-knowledge-9-0/"
|
||||
"language/kk/)\n"
|
||||
"Language: kk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Баптау"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Баптау"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Бас тарту"
|
@ -1,167 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read
|
||||
msgid "Attach files from an external DMS into Odoo"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model,name:knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model,name:knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.ui.menu,name:knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read
|
||||
msgid ""
|
||||
"Connect Odoo with a CMIS compatible server to attach files\n"
|
||||
"to an Odoo record.\n"
|
||||
"- This installs the module cmis_read."
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write
|
||||
msgid ""
|
||||
"Connect Odoo with a CMIS compatible server to store files.\n"
|
||||
"- This installs the module cmis_write."
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
|
||||
msgid "Connect with an external DMS"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.module.category,name:knowledge.module_category_knowledge
|
||||
#: model:ir.ui.menu,name:knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:res.groups,name:knowledge.group_document_user
|
||||
msgid "Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.module.category,description:knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write
|
||||
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
|
||||
msgid "The database object this attachment will be attached to."
|
||||
msgstr ""
|
||||
|
||||
#. module: knowledge
|
||||
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Knowledge/Documents menu."
|
||||
msgstr ""
|
@ -1,171 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "환경 설정"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "환경 설정"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "지식"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "문서"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "지식 구성"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "지식"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "지식 및 문서 관리"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "문서 관리"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "적용"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "취소"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "작성자"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "작성일"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "최근 갱신한 사람"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "최근 갱신 날짜"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "또는"
|
@ -1,147 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-09 18:03+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 18:04+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Lingala (http://www.transifex.com/oca/OCA-knowledge-9-0/"
|
||||
"language/ln/)\n"
|
||||
"Language: ln\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Tika"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
@ -1,150 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Lao (https://www.transifex.com/oca/teams/23907/lo/)\n"
|
||||
"Language: lo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "ການກໍານົດຄ່າ"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "ການກໍານົດຄ່າ"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "ການຄຸ້ມຄອງເອກະສານ"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "ການຄຸ້ມຄອງເອກະສານ"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "ການຄຸ້ມຄອງເອກະສານ"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "ຍົກເລີອກ"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "ຫຼື"
|
@ -1,167 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-09 18:03+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 18:05+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-knowledge-9-0/"
|
||||
"language/lt/)\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Nustatymai"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Nustatymai"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Taikyti"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Atšaukti"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Sukūrė"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Sukurta"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Paskutini kartą atnaujino"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "arba"
|
@ -1,168 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
|
||||
"Language: lv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
|
||||
"2);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Uzstādījumi"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Uzstādījumi"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokumenti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Dokumenti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Pielietot"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Atcelt"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Izveidoja"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Izveidots"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Pēdējo reizi atjaunoja"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Pēdējās izmaiņas"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "vai"
|
@ -1,171 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Конфигурација"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Конфигурација"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Знаење"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Документи"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Конфигурирај го Знаење"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Знаење"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Менаџирање на знаење и документи"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Менаџирај документи"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Примени"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Откажи"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Креирано од"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Креирано на"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Последно ажурирање од"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Последно ажурирање на"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "или"
|
@ -1,171 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Тохиргоо"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Тохиргоо"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Баримт"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Баримтууд"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Баримтын Тохиргоо"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Баримт"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Бичиг Баримт, Мэдлэгийн менежмент"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Бичиг баримтуудыг менежмент хийх"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Ашиглах"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Цуцлах"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Үүсгэгч"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Үүсгэсэн огноо"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Сүүлийн засвар хийсэн"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "эсвэл"
|
@ -1,169 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/"
|
||||
"nb/)\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfigurasjon"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Konfigurasjon"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Kunnskap"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokumenter"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Dokumenter"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Kunnskap"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Bruk"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Avbryt"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Opprettet av"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Opprettet"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Sist oppdatert av"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Sist oppdatert"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "eller"
|
@ -1,171 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Instellingen"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Instellingen"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Kennis"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documenten"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Configureer Knowledge"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Kennis"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Document & Kennis Management"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Beheer documenten"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Toepassen"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Annuleren"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Aangemaakt door"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Aangemaakt op"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Laatste bijgewerkt door"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "of"
|
@ -1,169 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/"
|
||||
"nl_BE/)\n"
|
||||
"Language: nl_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Instellingen"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Instellingen"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Kennis"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Kennis"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Kennis"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Toepassen"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Afbreken"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Gemaakt door"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Gemaakt op"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "of"
|
@ -1,161 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# Peter Hageman <hageman.p@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-28 03:34+0000\n"
|
||||
"PO-Revision-Date: 2017-03-28 03:34+0000\n"
|
||||
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n"
|
||||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
|
||||
"teams/23907/nl_NL/)\n"
|
||||
"Language: nl_NL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documenten"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Documenten"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Weergavenaam"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Laatst aangepast op"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "of"
|
@ -1,172 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfiguracja"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguracja"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Wiedza"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokumenty"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Skonfiguruj bibliotekę"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Wiedza"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Zarządzanie wiedzą i dokumentami"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Zarządzaj dokumentami"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Zastosuj"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Anuluj"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Utworzone przez"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Data utworzenia"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Ostatnio modyfikowane przez"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Data ostatniej modyfikacji"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "lub"
|
@ -1,180 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2024-02-28 21:33+0000\n"
|
||||
"Last-Translator: Peter Romão <peterromao@yahoo.co.uk>\n"
|
||||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
"Adicione fluxo de trabalho a documentos por categoria.\n"
|
||||
"- Isto instala o módulo document_page_approval."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Anexo"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr "Lista de Anexos e Indexação de Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr "Acesso Central aos Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes de Configuração"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuração"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Utilizador de Document Knowledge"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
"Indexação de documentos, pesquisa de texto completo de anexos.\n"
|
||||
"- Isto instala o módulo attachment_indexation."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Base de Conhecimento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Conhecimento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Gestão de Conhecimento e Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr "Gerir páginas de documentos (Wiki)"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Gerir documentos e apps de conhecimento\n"
|
||||
" relacionados\n"
|
||||
" "
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr "Gerir a aprovação de documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr "Modelo"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
"Forneçe páginas e categorias de documento como num wiki.\n"
|
||||
"- Isto instala o módulo document_page."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr "Modelo de Recursos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
"Quando configurar este campo, todos os utilizadores poderão gerir anexos, "
|
||||
"centralmente, no menu Base de Conhecimento/Documentos."
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Gerir documentos"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Aplicar"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Criado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Criado em"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última Actualização por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última Actualização em"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "ou"
|
@ -1,216 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2018-06-21 03:20+0000\n"
|
||||
"Last-Translator: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_BR/)\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.0.1\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
"Adicione fluxo de trabalho em documentos por categoria.\n"
|
||||
"- Isso instala o módulo document_page_approval."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configuração"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Conhecimento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
"Indexação de documentos, pesquisa de texto completo de anexos.\n"
|
||||
"- Isso instala o documento do módulo."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Configurar Conhecimento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Conhecimento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Gestão de Conhecimento e Documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr "Gerenciar páginas de documentos (Wiki)"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr "Gerenciar documentos e aplicativos relacionados ao conhecimento"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr "Gerenciar aprovação de documentos"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr "Modelo"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
"Forneça a página do documento e a categoria como um wiki.\n"
|
||||
"- Isso instala o módulo document_page."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Attach files from an external DMS into Odoo"
|
||||
#~ msgstr "Anexar arquivos de um DMS externo no Odoo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Connect Odoo with a CMIS compatible server to attach files\n"
|
||||
#~ "to an Odoo record.\n"
|
||||
#~ "- This installs the module cmis_read."
|
||||
#~ msgstr ""
|
||||
#~ "Conecte o Odoo a um servidor compatível com CMIS para anexar arquivos\n"
|
||||
#~ "para um registro Odoo.\n"
|
||||
#~ "- Isso instala o módulo cmis_read."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Connect Odoo with a CMIS compatible server to store files.\n"
|
||||
#~ "- This installs the module cmis_write."
|
||||
#~ msgstr ""
|
||||
#~ "Conecte o Odoo a um servidor compatível com CMIS para armazenar "
|
||||
#~ "arquivos.\n"
|
||||
#~ "- Isso instala o módulo cmis_write."
|
||||
|
||||
#~ msgid "Connect with an external DMS"
|
||||
#~ msgstr "Conecte-se com um DMS externo"
|
||||
|
||||
#~ msgid "Store attachments in an external DMS instead of the Odoo Filestore"
|
||||
#~ msgstr "Armazene anexos em um DMS externo em vez do Odoo Filestore"
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Gerenciar documentos"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Aplicar"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Criado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Criado em"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Mostrar nome"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificação em"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Última atualização por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Última atualização em"
|
||||
|
||||
#~ msgid "Using CMIS"
|
||||
#~ msgstr "Usando CMIS"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "ou"
|
@ -1,159 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knowledge (9.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-13 13:00+0000\n"
|
||||
"PO-Revision-Date: 2016-03-12 13:02+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-"
|
||||
"knowledge-9-0/language/pt_PT/)\n"
|
||||
"Language: pt_PT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
msgid "Documents Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancelar"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Criado por"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Criado em"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Atualizado pela última vez por"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Atualizado pela última vez em"
|
@ -1,172 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Configurare"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Configurare"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Cunoștințe"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Documente"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Configureaza Cunostințele"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Cunoștințe"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Managementul Cunostințelor și a Documentelor"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Gestioneaza documentele"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Aplică"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Anulează"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Creat de"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Creat la"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Ultima actualizare la"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "sau"
|
@ -1,213 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2021-02-12 09:45+0000\n"
|
||||
"Last-Translator: Sergey Pogorelov <serge.pogorelov@gmail.com>\n"
|
||||
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
"Добавить рабочий процесс для документов по категории.\n"
|
||||
"- Устанавливает модуль document_page_approval."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr "Вложение"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr "Список вложений и индексация документов"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr "Централизованный доступ к документам"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Конфигурационные настройки"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Настройка"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Пользователь знаний"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
"Индексация документов, полнотекстовый поиск вложений.\n"
|
||||
"- Устанавливает модуль attachment_indexation."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Документы"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Настройка знаний"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr "Группировать по"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Знания"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Управление знаниями и документами"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr "Управление страницами документов (Wiki)"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Управление документами и знаниями\n"
|
||||
" приложения\n"
|
||||
" "
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr "Управление согласованием документов"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr "Модель"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
"Предоставить страницу и категорию документа как вики.\n"
|
||||
"- Устанавливает модуль document_page."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr "Модель ресурса"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
"Когда вы установите это поле, все пользователи смогут управлять вложениями "
|
||||
"централизованно, из меню Знания/документы."
|
||||
|
||||
#~ msgid "Attach files from an external DMS into Odoo"
|
||||
#~ msgstr "Прикрепите файлы из внешнего DMS в Odoo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Connect Odoo with a CMIS compatible server to attach files\n"
|
||||
#~ "to an Odoo record.\n"
|
||||
#~ "- This installs the module cmis_read."
|
||||
#~ msgstr ""
|
||||
#~ "Подключите Odoo к CMIS-совместимому серверу для прикрепления файлов\n"
|
||||
#~ "в запись Odoo.\n"
|
||||
#~ "- Устанавливает модуль cmis_read."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Connect Odoo with a CMIS compatible server to store files.\n"
|
||||
#~ "- This installs the module cmis_write."
|
||||
#~ msgstr ""
|
||||
#~ "Подключите Odoo к CMIS-совместимому серверу для хранения файлов.\n"
|
||||
#~ "- Устанавливает модуль cmis_write."
|
||||
|
||||
#~ msgid "Connect with an external DMS"
|
||||
#~ msgstr "Подключитесь к внешней DMS"
|
||||
|
||||
#~ msgid "Store attachments in an external DMS instead of the Odoo Filestore"
|
||||
#~ msgstr "Храните вложения во внешней DMS вместо файлового хранилища Odoo"
|
||||
|
||||
#~ msgid "The database object this attachment will be attached to."
|
||||
#~ msgstr "Объект базы данных, к которому будет прикреплено это вложение."
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Управлять документами"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Применить"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Отменить"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Создано"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Создан"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Последний раз обновлено"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Последний раз обновлено"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "или"
|
@ -1,164 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavenie"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Nastavenie"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
msgid "Document Knowledge user"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokumenty"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Dokumenty"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Zrušiť"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Vytvoril"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Vytvorené"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Naposledy upravoval"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Naposledy upravované"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "alebo"
|
@ -1,213 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
"Dodaj delotok dokumentov po kategoriji.\n"
|
||||
"- namesti modul document_page_approval."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "knowledge.config.settings"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Nastavitve"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Baza znanja"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
"Indeksacija dokumentov, iskanje po vsebini prilog.\n"
|
||||
"- Namesti modul 'document'."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokumenti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Nastavitve baze znanja"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Baza znanja"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Baza znanja in upravljanje dokumentov"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr "Upravljanje strani dokumentov (Wiki)"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr "Upravljanje odobritev dokumentov"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
"Zagotovi stran dokumenta in kategorijo kot wiki.\n"
|
||||
"- namesti modul document_page."
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr "Nastavitve"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Attach files from an external DMS into Odoo"
|
||||
#~ msgstr "Pripni datoteke iz zunanjega DMS v Odoo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Connect Odoo with a CMIS compatible server to attach files\n"
|
||||
#~ "to an Odoo record.\n"
|
||||
#~ "- This installs the module cmis_read."
|
||||
#~ msgstr ""
|
||||
#~ "Poveži Odoo s CMIS združljivim strežnikom za pripenjanje datotek\n"
|
||||
#~ "Odoo zapisu.\n"
|
||||
#~ "- namesti modul cmis_read."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Connect Odoo with a CMIS compatible server to store files.\n"
|
||||
#~ "- This installs the module cmis_write."
|
||||
#~ msgstr ""
|
||||
#~ "Poveži Odoo s CMIS združljivim strežnikom za hrambo datotek.\n"
|
||||
#~ "- namesti modul cmis_write."
|
||||
|
||||
#~ msgid "Connect with an external DMS"
|
||||
#~ msgstr "Poveži z zunanjim DMS"
|
||||
|
||||
#~ msgid "Store attachments in an external DMS instead of the Odoo Filestore"
|
||||
#~ msgstr "Hrani priponke na zunanjem DMS namesto v Odoo Filestore"
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Upravljanje dokumentov"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Uveljavi"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Preklic"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Ustvaril"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Ustvarjeno"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Naziv prikaza"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Zadnjič posodobil"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#~ msgid "Using CMIS"
|
||||
#~ msgstr "Uporaba CMIS"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "ali"
|
@ -1,154 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
|
||||
"Language: sr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfiguracija"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguracija"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Znanje"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokumenti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Dokumenti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Znanje"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Otkaži"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Kreiran"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
@ -1,158 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/"
|
||||
"sr@latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Podešavanje"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Podešavanje"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Znanje"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokumenti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Dokumenti"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Znanje"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Primeni"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Otkaži"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Kreiran"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
@ -1,171 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "Kunskap"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "Dokument"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "Konfigurera kunskapssystemet"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "Kunskap"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr "Dokumenthantering och kunskapsutveckling"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Manage documents"
|
||||
#~ msgstr "Administrera dokument"
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "Verkställ"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Avbryt"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "Skapad av"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "Skapad den"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "Senast uppdaterad av"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "Senast uppdaterad"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "eller"
|
@ -1,168 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * knowledge
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-20 03:35+0000\n"
|
||||
"PO-Revision-Date: 2017-01-20 03:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
|
||||
"Language: th\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid ""
|
||||
"Add workflow on documents per category.\n"
|
||||
"- This installs the module document_page_approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_ir_attachment
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid "Attachments List and Document Indexation"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
|
||||
msgid "Central access to Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model,name:document_knowledge.model_res_config_settings
|
||||
#, fuzzy
|
||||
msgid "Config Settings"
|
||||
msgstr "ตั้งค่า"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
|
||||
msgid "Configuration"
|
||||
msgstr "ตั้งค่า"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:res.groups,name:document_knowledge.group_document_user
|
||||
#, fuzzy
|
||||
msgid "Document Knowledge user"
|
||||
msgstr "ความรู้"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
|
||||
msgid ""
|
||||
"Document indexation, full text search of attachements.\n"
|
||||
"- This installs the module attachment_indexation."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Documents"
|
||||
msgstr "เอกสาร"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
|
||||
#, fuzzy
|
||||
msgid "Documents Knowledge"
|
||||
msgstr "เอกสาร"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge"
|
||||
msgstr "ความรู้"
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
|
||||
msgid "Knowledge and Documents Management"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid "Manage document pages (Wiki)"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
|
||||
msgid ""
|
||||
"Manage documents and knowledge-related\n"
|
||||
" applications\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
|
||||
msgid "Manage documents approval"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
|
||||
msgid ""
|
||||
"Provide document page and category as a wiki.\n"
|
||||
"- This installs the module document_page."
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
|
||||
msgid "Resource Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
|
||||
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: document_knowledge
|
||||
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
|
||||
msgid ""
|
||||
"When you set this field all users will be able to manage attachments "
|
||||
"centrally, from the Document Knowledge/Documents menu."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Apply"
|
||||
#~ msgstr "ปรับใช้"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "ยกเลิก"
|
||||
|
||||
#~ msgid "Created by"
|
||||
#~ msgstr "สร้างโดย"
|
||||
|
||||
#~ msgid "Created on"
|
||||
#~ msgstr "สร้างเมื่อ"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "รหัส"
|
||||
|
||||
#~ msgid "Last Updated by"
|
||||
#~ msgstr "อัพเดทครั้งสุดท้ายโดย"
|
||||
|
||||
#~ msgid "Last Updated on"
|
||||
#~ msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "หรือ"
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user