├── .gitignore
├── crm_vcard
├── __init__.py
├── crm_lead_data.xml
├── __openerp__.py
└── crm_lead.py
├── document_carddav
├── __init__.py
├── static
│ └── src
│ │ ├── xml
│ │ └── base.xml
│ │ └── js
│ │ └── search.js
├── __openerp__.py
├── addressbook_collection.py
└── carddav_setup.xml
├── base_vcard
├── __init__.py
├── res_partner_data.xml
├── __openerp__.py
├── property.py
└── res_partner.py
├── document_webdav_fast
├── images
│ ├── dav_properties.jpeg
│ └── directories_structure_principals.jpeg
├── public_html
│ └── index.html
├── security
│ └── ir.model.access.csv
├── webdav_demo.xml
├── doc
│ └── well-known.rst
├── __init__.py
├── cache.py
├── cache_cursor.py
├── test
│ └── webdav_test1.yml
├── document.py
├── __openerp__.py
├── redirect.py
├── i18n
│ ├── document_webdav.pot
│ ├── cs.po
│ ├── el.po
│ ├── eu.po
│ ├── et.po
│ ├── id.po
│ ├── da.po
│ ├── es_EC.po
│ ├── gu.po
│ ├── mn.po
│ ├── pl.po
│ ├── sr.po
│ ├── sr@latin.po
│ ├── ja.po
│ ├── zh_TW.po
│ ├── bg.po
│ ├── zh_CN.po
│ ├── ca.po
│ ├── fi.po
│ ├── gl.po
│ ├── hr.po
│ ├── ar.po
│ ├── sv.po
│ ├── es_PY.po
│ ├── tr.po
│ ├── nb.po
│ ├── sl.po
│ ├── ru.po
│ ├── it.po
│ ├── en_GB.po
│ ├── ro.po
│ └── es_CR.po
└── webdav_setup.xml
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | *.pyc
2 |
--------------------------------------------------------------------------------
/crm_vcard/__init__.py:
--------------------------------------------------------------------------------
1 | from . import crm_lead
2 |
--------------------------------------------------------------------------------
/document_carddav/__init__.py:
--------------------------------------------------------------------------------
1 | from . import addressbook_collection
2 |
--------------------------------------------------------------------------------
/base_vcard/__init__.py:
--------------------------------------------------------------------------------
1 | from . import vcard_model
2 | from . import res_partner
3 |
--------------------------------------------------------------------------------
/document_webdav_fast/images/dav_properties.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/initOS/openerp-dav/HEAD/document_webdav_fast/images/dav_properties.jpeg
--------------------------------------------------------------------------------
/document_webdav_fast/images/directories_structure_principals.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/initOS/openerp-dav/HEAD/document_webdav_fast/images/directories_structure_principals.jpeg
--------------------------------------------------------------------------------
/crm_vcard/crm_lead_data.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/base_vcard/res_partner_data.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/document_webdav_fast/public_html/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | OpenERP server
4 |
5 |
6 | This is an OpenERP server. Nothing to GET here.
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/document_carddav/static/src/xml/base.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
CardDAV url
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | openerp-dav
2 | ===========
3 |
4 | vCard and CardDAV modules for OpenERP (Odoo) v7 and v8
5 |
6 | * base_vcard: This module introduces a vcard.model that helps to export and import OpenERP records as vCards. It includes a basic mapping for res.partner.
7 | * crm_vcard: This module includes a basic mapping for crm.lead from and to vCards.
8 | * document_carddav: A very simple CardDAV implementation
9 | * document_webdav_fast: A copy of the original document_webdav module with patches for performance improvements.
10 |
11 | *IMPORTANT* The modules require the latest version of PyWebDAV 0.9.8.
12 |
--------------------------------------------------------------------------------
/document_webdav_fast/security/ir.model.access.csv:
--------------------------------------------------------------------------------
1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
2 | access_webdav_dir_property_all,webdav.dir.property all,model_document_webdav_dir_property,,1,0,0,0
3 | access_webdav_dir_property_group_doc_manager,webdav.dir.property document manager,model_document_webdav_dir_property,base.group_system,1,1,1,1
4 | access_webdav_dir_property_group_system,webdav.dir.property group system,model_document_webdav_dir_property,base.group_system,1,1,1,1
5 | access_webdav_file_property_all,webdav.file.property all,model_document_webdav_file_property,,1,1,1,1
6 |
--------------------------------------------------------------------------------
/document_carddav/static/src/js/search.js:
--------------------------------------------------------------------------------
1 | openerp.document_carddav = function(instance){
2 | var module = instance.web.search;
3 |
4 | module.CustomFilters.include({
5 | toggle_filter: function (filter, preventSearch) {
6 | this._super(filter, preventSearch);
7 | var current_id = this.view.query.pluck('_id');
8 | var url = '';
9 | if (current_id.length) {
10 | url = this.session.server + '/webdav/' +
11 | this.session.db + '/addressbooks/users/' +
12 | this.session.username + '/a/m-' + this.view.model +
13 | '/filtered-' + current_id[0] + '/';
14 | }
15 | $('#filter_carddav_url').val(url);
16 | }
17 | });
18 | };
19 |
--------------------------------------------------------------------------------
/document_webdav_fast/webdav_demo.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | debug:
6 | node_class
7 | %(node_classname)s
8 |
9 |
10 |
11 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/document_webdav_fast/doc/well-known.rst:
--------------------------------------------------------------------------------
1 | =================
2 | Well-known URIs
3 | =================
4 |
5 | In accordance to IETF RFC 5785 [1], we shall publish a few locations
6 | on the root of our http server, so that clients can discover our
7 | services (CalDAV, eg.).
8 |
9 | This module merely installs a special http request handler, that will
10 | redirect the URIs from "http://our-server:port/.well-known/xxx' to
11 | the correct path for each xxx service.
12 |
13 | Note that well-known URIs cannot have a database-specific behaviour,
14 | they are server-wide. So, we have to explicitly chose one of our databases
15 | to serve at them. By default, the database of the configuration file
16 | is chosen
17 |
18 | Example config:
19 |
20 | [http-well-known]
21 | num_services = 2
22 | db_name = openerp-main ; must define that for path_1 below
23 | service_1 = caldav
24 | path_1 = /webdav/%(db_name)s/Calendars/
25 | service_2 = foo
26 | path_2 = /other_db/static/Foo.html
27 |
28 |
29 | [1] http://www.rfc-editor.org/rfc/rfc5785.txt
--------------------------------------------------------------------------------
/document_webdav_fast/__init__.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | ##############################################################################
3 | #
4 | # OpenERP, Open Source Management Solution
5 | # Copyright (C) 2004-2010 Tiny SPRL ().
6 | #
7 | # This program is free software: you can redistribute it and/or modify
8 | # it under the terms of the GNU Affero General Public License as
9 | # published by the Free Software Foundation, either version 3 of the
10 | # License, or (at your option) any later version.
11 | #
12 | # This program is distributed in the hope that it will be useful,
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 | # GNU Affero General Public License for more details.
16 | #
17 | # You should have received a copy of the GNU Affero General Public License
18 | # along with this program. If not, see .
19 | #
20 | ##############################################################################
21 | import logging
22 |
23 | import webdav
24 | import webdav_server
25 | import document_webdav
26 |
27 | # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
28 |
--------------------------------------------------------------------------------
/document_webdav_fast/cache.py:
--------------------------------------------------------------------------------
1 | import time
2 | import heapq
3 |
4 | def memoize(maxsize):
5 | """decorator to 'memoize' a function - caching its results"""
6 | def decorating_function(f):
7 | cache = {} # map from key to value
8 | heap = [] # list of keys, in LRU heap
9 | cursize = 0 # because len() is slow
10 | def wrapper(*args):
11 | key = repr(args)
12 | # performance crap
13 | _cache=cache
14 | _heap=heap
15 | _heappop = heapq.heappop
16 | _heappush = heapq.heappush
17 | _time = time.time
18 | _cursize = cursize
19 | _maxsize = maxsize
20 | if not _cache.has_key(key):
21 | if _cursize == _maxsize:
22 | # pop oldest element
23 | (_,oldkey) = _heappop(_heap)
24 | _cache.pop(oldkey)
25 | else:
26 | _cursize += 1
27 | # insert this element
28 | _cache[key] = f(*args)
29 | _heappush(_heap,(_time(),key))
30 | wrapper.misses += 1
31 | else:
32 | wrapper.hits += 1
33 | return cache[key]
34 | wrapper.__doc__ = f.__doc__
35 | wrapper.__name__ = f.__name__
36 | wrapper.hits = wrapper.misses = 0
37 | return wrapper
38 | return decorating_function
39 |
40 |
41 | # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
42 |
--------------------------------------------------------------------------------
/document_webdav_fast/cache_cursor.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | ##############################################################################
3 | #
4 | # Copyright (C) 2014 initOS GmbH & Co. KG ().
5 | #
6 | # This program is free software: you can redistribute it and/or modify
7 | # it under the terms of the GNU Affero General Public License as
8 | # published by the Free Software Foundation, either version 3 of the
9 | # License, or (at your option) any later version.
10 | #
11 | # This program is distributed in the hope that it will be useful,
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | # GNU Affero General Public License for more details.
15 | #
16 | # You should have received a copy of the GNU Affero General Public License
17 | # along with this program. If not, see .
18 | #
19 | ##############################################################################
20 |
21 | from threading import current_thread, Lock
22 | import logging
23 | _logger = logging.getLogger(__name__)
24 |
25 |
26 | class CacheCursor(object):
27 | "Caches a triple per thread"
28 |
29 | def __init__(self):
30 | self._lock = Lock()
31 | self._cache = {}
32 |
33 | def _get_key(self):
34 | return repr(current_thread())
35 |
36 | def put(self, obj):
37 | with self._lock:
38 | self._cache[self._get_key()] = obj
39 |
40 | def get(self):
41 | with self._lock:
42 | return self._cache.get(self._get_key(), (None, None, None))
43 |
44 | def delete(self):
45 | with self._lock:
46 | key = self._get_key()
47 | if not key in self._cache:
48 | return
49 | del self._cache[self._get_key()]
50 |
--------------------------------------------------------------------------------
/crm_vcard/__openerp__.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | ##############################################################################
3 | #
4 | # OpenERP, Open Source Management Solution
5 | # Copyright (C) 2010-2013 OpenERP s.a. ().
6 | # Copyright (C) 2013-14 initOS GmbH & Co. KG ().
7 | # Author Thomas Rehn
8 | # Author Markus Schneider
9 | #
10 | # This program is free software: you can redistribute it and/or modify
11 | # it under the terms of the GNU Affero General Public License as
12 | # published by the Free Software Foundation, either version 3 of the
13 | # License, or (at your option) any later version.
14 | #
15 | # This program is distributed in the hope that it will be useful,
16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 | # GNU Affero General Public License for more details.
19 | #
20 | # You should have received a copy of the GNU Affero General Public License
21 | # along with this program. If not, see .
22 | #
23 | ##############################################################################
24 | {
25 | "name": "vCard support for CRM leads",
26 | "version": "0.1",
27 | "depends": ["base_vcard", "crm"],
28 | 'external_dependencies': {
29 | 'python': ['vobject'],
30 | },
31 | 'author': 'initOS GmbH & Co. KG',
32 | "category": "",
33 | "summary": "vCard support for crm.lead",
34 | 'license': 'AGPL-3',
35 | "description": """
36 | This module includes a basic mapping for crm.lead from and to vCards.
37 | """,
38 | 'data': [
39 | 'crm_lead_data.xml',
40 | ],
41 | 'demo': [
42 | ],
43 | 'test': [
44 | ],
45 | 'installable': True,
46 | 'auto_install': False,
47 | }
48 |
--------------------------------------------------------------------------------
/base_vcard/__openerp__.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | ##############################################################################
3 | #
4 | # OpenERP, Open Source Management Solution
5 | # Copyright (C) 2010-2013 OpenERP s.a. ().
6 | # Copyright (C) 2013-14 initOS GmbH & Co. KG ().
7 | # Author Thomas Rehn
8 | # Author Markus Schneider
9 | #
10 | # This program is free software: you can redistribute it and/or modify
11 | # it under the terms of the GNU Affero General Public License as
12 | # published by the Free Software Foundation, either version 3 of the
13 | # License, or (at your option) any later version.
14 | #
15 | # This program is distributed in the hope that it will be useful,
16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 | # GNU Affero General Public License for more details.
19 | #
20 | # You should have received a copy of the GNU Affero General Public License
21 | # along with this program. If not, see .
22 | #
23 | ##############################################################################
24 | {
25 | "name": "vCard support for models",
26 | "version": "0.1",
27 | "depends": ["base"],
28 | 'external_dependencies': {
29 | 'python': ['vobject'],
30 | },
31 | 'author': 'initOS GmbH & Co. KG',
32 | "category": "",
33 | "summary": "Basic vCard support for res.partner",
34 | 'license': 'AGPL-3',
35 | "description": """
36 | This module introduces a vcard.model that helps to export and import
37 | OpenERP records as vCards. It includes a basic mapping for res.partner.
38 | """,
39 | 'data': [
40 | 'res_partner_data.xml',
41 | ],
42 | 'demo': [
43 | ],
44 | 'test': [
45 | ],
46 | 'installable': True,
47 | 'auto_install': False,
48 | }
49 |
--------------------------------------------------------------------------------
/document_carddav/__openerp__.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | ##############################################################################
3 | #
4 | # OpenERP, Open Source Management Solution
5 | # Copyright (C) 2010-2013 OpenERP s.a. ().
6 | # Copyright (C) 2013-2014 initOS GmbH & Co. KG ().
7 | # Author Thomas Rehn
8 | # Author Markus Schneider
9 | #
10 | # This program is free software: you can redistribute it and/or modify
11 | # it under the terms of the GNU Affero General Public License as
12 | # published by the Free Software Foundation, either version 3 of the
13 | # License, or (at your option) any later version.
14 | #
15 | # This program is distributed in the hope that it will be useful,
16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 | # GNU Affero General Public License for more details.
19 | #
20 | # You should have received a copy of the GNU Affero General Public License
21 | # along with this program. If not, see .
22 | #
23 | ##############################################################################
24 | {
25 | "name": "CardDAV",
26 | "version": "0.1",
27 | "depends": ["base", "document_webdav_fast", "web",
28 | "base_vcard", "crm_vcard"],
29 | 'author': 'initOS GmbH & Co. KG',
30 | "category": "",
31 | "summary": "A simple CardDAV implementation",
32 | 'license': 'AGPL-3',
33 | "description": """
34 | A very simple CardDAV implementation
35 | ====================================
36 |
37 | Urls:
38 |
39 | - For all partners: /webdav/$db_name/addressbooks/users/$login/a/m-res.partner/default/
40 | - For all leads: /webdav/$db_name/addressbooks/users/$login/a/m-crm.lead/default/
41 |
42 | Collections can be filtered, the url is then shown in the search view drop-down.
43 | """,
44 | 'data': [
45 | 'carddav_setup.xml',
46 | ],
47 | 'demo': [
48 | ],
49 | 'test': [
50 | ],
51 | 'installable': True,
52 | 'auto_install': False,
53 | 'js': ['static/src/js/search.js'],
54 | 'qweb': ['static/src/xml/base.xml'],
55 | }
56 |
--------------------------------------------------------------------------------
/document_carddav/addressbook_collection.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | ##############################################################################
3 | #
4 | # OpenERP, Open Source Management Solution
5 | # Copyright (C) 2013-2014 initOS GmbH & Co. KG ().
6 | # Author Thomas Rehn
7 | #
8 | # This program is free software: you can redistribute it and/or modify
9 | # it under the terms of the GNU Affero General Public License as
10 | # published by the Free Software Foundation, either version 3 of the
11 | # License, or (at your option) any later version.
12 | #
13 | # This program is distributed in the hope that it will be useful,
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 | # GNU Affero General Public License for more details.
17 | #
18 | # You should have received a copy of the GNU Affero General Public License
19 | # along with this program. If not, see .
20 | #
21 | ##############################################################################
22 |
23 | from openerp.osv import orm, fields
24 | from .carddav_node import node_model_vcard_collection
25 |
26 |
27 | class AddressbookCollection(orm.Model):
28 | _inherit = 'document.directory'
29 |
30 | _columns = {
31 | 'addressbook_collection': fields.boolean('Addressbook Collection'),
32 | }
33 |
34 | _default = {
35 | 'addressbook_collection': False,
36 | }
37 |
38 | def get_node_class(self, cr, uid, ids, dbro=None, dynamic=False,
39 | context=None):
40 | if dbro is None:
41 | dbro = self.browse(cr, uid, ids, context=context)
42 |
43 | if dbro.addressbook_collection:
44 | return node_model_vcard_collection
45 | else:
46 | return super(AddressbookCollection, self) \
47 | .get_node_class(cr, uid, ids, dbro=dbro, dynamic=dynamic,
48 | context=context)
49 |
50 | def get_description(self, cr, uid, ids, context=None):
51 | # TODO : return description of all calendars
52 | return False
53 |
54 |
55 | # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
56 |
--------------------------------------------------------------------------------
/document_webdav_fast/test/webdav_test1.yml:
--------------------------------------------------------------------------------
1 | -
2 | In order to test the document_webdav functionality
3 | -
4 | I open the HTTP port and perform an OPTIONS request to the server
5 | -
6 | !python {model: ir.attachment}: |
7 | from document_webdav import test_davclient as te
8 | reload(te) # reload..
9 | dc = te.DAVClient(timeout=2.0)
10 | # have a small timeout, enough for any heavily-loaded test server to
11 | # respond, but small so that this test won't block further loading.
12 | # Don't catch the exception, so that the whole YAML test will abort
13 | # if the WebDAV service is not available (eg. during an upgrade from
14 | # command line).
15 | dc.gd_options()
16 | dc.get_creds(self, cr, uid)
17 | dc.gd_options(path=cr.dbname, expect={'DAV': ['1',]})
18 | -
19 | I will test the propnames at the document root
20 | -
21 | !python {model: ir.attachment}: |
22 | from document_webdav import test_davclient as te
23 | dc = te.DAVClient()
24 | dc.get_creds(self, cr, uid)
25 | dc.gd_propname(path=cr.dbname+'/Documents/')
26 | -
27 | I will test the ETags of the document root
28 | -
29 | !python {model: ir.attachment}: |
30 | from document_webdav import test_davclient as te
31 | dc = te.DAVClient()
32 | dc.get_creds(self, cr, uid)
33 | dc.gd_getetag(path=cr.dbname+'/Documents/')
34 |
35 | -
36 | I will now ls -l the document root.
37 | -
38 | !python {model: ir.attachment}: |
39 | from document_webdav import test_davclient as te
40 | dc = te.DAVClient()
41 | dc.get_creds(self, cr, uid)
42 | res = dc.gd_lsl(path=cr.dbname+'/Documents/')
43 | for lin in res:
44 | print "%(type)s\t%(uid)s\t%(gid)s\t%(size)s\t%(mtime)s\t%(name)s" % lin
45 | -
46 | I will put a file to the server
47 | -
48 | !python {model: ir.attachment}: |
49 | from document_webdav import test_davclient as te
50 | import addons
51 | dc = te.DAVClient()
52 | dc.get_creds(self, cr, uid)
53 | tdp = addons.get_module_resource('document_webdav', 'test_davclient.py')
54 | res = dc.gd_put(path=cr.dbname+'/Documents/test_davclient.py', srcpath=tdp)
55 | -
56 | I will try to get the file from the root
57 | -
58 | !python {model: ir.attachment}: |
59 | from document_webdav import test_davclient as te
60 | import addons
61 | dc = te.DAVClient()
62 | dc.get_creds(self, cr, uid)
63 | tdp = addons.get_module_resource('document_webdav', 'test_davclient.py')
64 | res = dc.gd_get(path=cr.dbname+'/Documents/test_davclient.py', crange=(4,508), compare=tdp)
65 |
--------------------------------------------------------------------------------
/base_vcard/property.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | ##############################################################################
3 | #
4 | # OpenERP, Open Source Management Solution
5 | # Copyright (C) 2010-2013 OpenERP s.a. ().
6 | # Copyright (C) 2013-2014 initOS GmbH & Co. KG ().
7 | # Author Thomas Rehn
8 | # Author Markus Schneider
9 | #
10 | # This program is free software: you can redistribute it and/or modify
11 | # it under the terms of the GNU Affero General Public License as
12 | # published by the Free Software Foundation, either version 3 of the
13 | # License, or (at your option) any later version.
14 | #
15 | # This program is distributed in the hope that it will be useful,
16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 | # GNU Affero General Public License for more details.
19 | #
20 | # You should have received a copy of the GNU Affero General Public License
21 | # along with this program. If not, see .
22 | #
23 | ##############################################################################
24 |
25 |
26 | class vcard_property(object):
27 | "Handles the connection between a vCard property and an OpenERP record"
28 | def __init__(self, vcard_name, column_name=None, set_transformation=None):
29 | self._vcard_name = vcard_name
30 | self._column_name = column_name
31 | self._set_transformation = set_transformation
32 |
33 | def vcard_name(self):
34 | return self._vcard_name
35 |
36 | def set_vcard(self, vcard, record):
37 | "Sets a vcard property from a browse object"
38 | if not self._column_name:
39 | return False
40 | record_val = getattr(record, self._column_name, None)
41 | if record_val and self._set_transformation:
42 | record_val = self._set_transformation(record_val)
43 | if record_val:
44 | vcard_prop = vcard.add(self._vcard_name)
45 | vcard_prop.value = record_val
46 | return True
47 | return False
48 |
49 | def get_vcard(self, update_values, vcard):
50 | """Reads a vcard property and puts in into a dictionary
51 | suitable for .write(.)"""
52 | if not self._column_name:
53 | return False
54 | if self._set_transformation:
55 | # getting attributes which have a set-transformation
56 | # is not supported yet
57 | return False
58 | if self._vcard_name in vcard.contents:
59 | update_values[self._column_name] = \
60 | vcard.contents[self._vcard_name][0].value
61 | return True
62 | return False
63 |
--------------------------------------------------------------------------------
/document_carddav/carddav_setup.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | []
7 |
8 |
9 |
10 |
11 | directory
12 |
13 | addressbooks
14 |
15 |
16 | [('id','=',uid)]
17 |
18 |
19 |
20 |
21 |
22 |
23 | ressource
24 |
25 |
26 | users
27 |
28 |
29 | []
30 |
31 |
32 |
33 |
34 | directory
35 |
36 | a
37 |
38 |
39 |
40 |
41 | urn:ietf:params:xml:ns:carddav
42 |
43 | addressbook-home-set
44 | ('href','DAV:','/%s/%s/addressbooks/users/%s/a' % ('webdav',dbname,username) )
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/document_webdav_fast/document.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | ##############################################################################
3 | #
4 | # OpenERP, Open Source Management Solution
5 | # Copyright (C) 2004-2010 Tiny SPRL ().
6 | # Copyright (C) 2014 initOS GmbH & Co. KG ().
7 | #
8 | # This program is free software: you can redistribute it and/or modify
9 | # it under the terms of the GNU Affero General Public License as
10 | # published by the Free Software Foundation, either version 3 of the
11 | # License, or (at your option) any later version.
12 | #
13 | # This program is distributed in the hope that it will be useful,
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 | # GNU Affero General Public License for more details.
17 | #
18 | # You should have received a copy of the GNU Affero General Public License
19 | # along with this program. If not, see .
20 | #
21 | ##############################################################################
22 |
23 | from openerp.osv import orm
24 | from .cache import memoize
25 | from openerp.addons.document.document import node_context
26 |
27 |
28 | class document_directory(orm.Model):
29 | _inherit = 'document.directory'
30 |
31 | def get_object(self, cr, uid, uri, context=None):
32 | """ Return a node object for the given uri.
33 | This fn merely passes the call to node_context
34 | """
35 | return get_node_context_fast(cr, uid, context).get_uri(cr, uri)
36 |
37 |
38 | @memoize(20000)
39 | def get_node_context_fast(cr, uid, context):
40 | return node_context_fast(cr, uid, context)
41 |
42 |
43 | class node_context_fast(node_context):
44 | def __init__(self, cr, uid, context=None):
45 | super(node_context_fast, self).__init__(cr, uid, context=context)
46 | self._cache = {}
47 |
48 | def get_uri(self, cr, uri):
49 | """ Although this fn passes back to doc.dir, it is needed since
50 | it is a potential caching point.
51 | """
52 | uri = map(unicode, uri)
53 | (ndir, duri) = (None, None)
54 | for i in range(len(uri), 1, -1):
55 | _key = (repr(cr), repr(uri[:i]))
56 | if _key in self._cache:
57 | ndir = self._cache[_key]
58 | duri = uri[i:]
59 | break
60 | if not ndir:
61 | (ndir, duri) = self._dirobj._locate_child(cr, self.uid, self.rootdir, uri, None, self)
62 | for i in range(len(duri)):
63 | ndir = ndir.child(cr, duri[i])
64 | if not ndir:
65 | return False
66 | _key = (repr(cr), repr(duri[:(i + 1)]))
67 | self._cache[_key] = ndir
68 | return ndir
69 |
--------------------------------------------------------------------------------
/document_webdav_fast/__openerp__.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | ##############################################################################
3 | #
4 | # Copyright (c) 2004 TINY SPRL. (http://tiny.be), 2009 P. Christeas
5 | # All Rights Reserved.
6 | # Fabien Pinckaers
7 | #
8 | # WARNING: This program as such is intended to be used by professional
9 | # programmers who take the whole responsability of assessing all potential
10 | # consequences resulting from its eventual inadequacies and bugs
11 | # End users who are looking for a ready-to-use solution with commercial
12 | # garantees and support are strongly adviced to contract a Free Software
13 | # Service Company
14 | #
15 | # This program is Free Software; you can redistribute it and/or
16 | # modify it under the terms of the GNU General Public License
17 | # as published by the Free Software Foundation; either version 2
18 | # of the License, or (at your option) any later version.
19 | #
20 | # This program is distributed in the hope that it will be useful,
21 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
22 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 | # GNU General Public License for more details.
24 | #
25 | # You should have received a copy of the GNU General Public License
26 | # along with this program; if not, write to the Free Software
27 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
28 | #
29 | ##############################################################################
30 |
31 | {
32 | 'name': 'Shared Repositories (WebDAV) with performance improvements',
33 | 'version': '2.3',
34 | 'author': 'OpenERP SA, initOS GmbH & Co. KG',
35 | 'category': 'Knowledge Management',
36 | 'website': 'http://www.openerp.com',
37 | 'description': """
38 | With this module, the WebDAV server for documents is activated.
39 | ===============================================================
40 |
41 | You can then use any compatible browser to remotely see the attachments of OpenObject.
42 |
43 | After installation, the WebDAV server can be controlled by a [webdav] section in
44 | the server's config.
45 |
46 | Server Configuration Parameter:
47 | -------------------------------
48 | [webdav]:
49 | +++++++++
50 | * enable = True ; Serve webdav over the http(s) servers
51 | * vdir = webdav ; the directory that webdav will be served at
52 | * this default val means that webdav will be
53 | * on "http://localhost:8069/webdav/
54 | * verbose = True ; Turn on the verbose messages of webdav
55 | * debug = True ; Turn on the debugging messages of webdav
56 | * since the messages are routed to the python logging, with
57 | * levels "debug" and "debug_rpc" respectively, you can leave
58 | * these options on
59 |
60 | Also implements IETF RFC 5785 for services discovery on a http server,
61 | which needs explicit configuration in openerp-server.conf too.
62 | """,
63 | 'depends': ['base', 'document'],
64 | 'data': ['security/ir.model.access.csv',
65 | 'webdav_view.xml',
66 | 'webdav_setup.xml',
67 | ],
68 | 'demo': [],
69 | 'test': [ #'test/webdav_test1.yml',
70 | ],
71 | 'auto_install': False,
72 | 'installable': True,
73 | 'images': ['images/dav_properties.jpeg','images/directories_structure_principals.jpeg'],
74 | }
75 |
76 | # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
77 |
--------------------------------------------------------------------------------
/crm_vcard/crm_lead.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | ##############################################################################
3 | #
4 | # OpenERP, Open Source Management Solution
5 | # Copyright (C) 2010-2013 OpenERP s.a. ().
6 | # Copyright (C) 2013-2014 initOS GmbH & Co. KG ().
7 | # Author Thomas Rehn
8 | # Author Markus Schneider
9 | #
10 | # This program is free software: you can redistribute it and/or modify
11 | # it under the terms of the GNU Affero General Public License as
12 | # published by the Free Software Foundation, either version 3 of the
13 | # License, or (at your option) any later version.
14 | #
15 | # This program is distributed in the hope that it will be useful,
16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 | # GNU Affero General Public License for more details.
19 | #
20 | # You should have received a copy of the GNU Affero General Public License
21 | # along with this program. If not, see .
22 | #
23 | ##############################################################################
24 | from openerp.osv import orm
25 | from openerp.addons.base_vcard.property import vcard_property
26 | import vobject
27 |
28 |
29 | class CrmLead(orm.Model):
30 | _inherit = ['crm.lead', 'vcard.model']
31 | _name = 'crm.lead'
32 |
33 | def _get_vcard_mapping(self):
34 | return super(CrmLead, self)._get_vcard_mapping() + \
35 | [vcard_property('email', column_name='email_from'),
36 | vcard_property('role', column_name='function'),
37 | vcard_property('note', column_name='description'),
38 | vcard_property('fn', column_name='name'),
39 | vcard_property('org', column_name='partner_name',
40 | set_transformation=(lambda x: [x])),
41 | # list properties that are handled by _fill_get_vcard /
42 | # _fill_set_vcard directly (so that we know which properties
43 | # are NOT mapped by OpenERP)
44 | vcard_property('n'),
45 | vcard_property('adr'),
46 | vcard_property('tel'),
47 | ]
48 |
49 | def _fill_get_vcard(self, cr, uid, ids, vcard):
50 | partner_obj = self.browse(cr, uid, ids)[0]
51 |
52 | vcard.add('n')
53 | vcard.n.value = vobject.vcard.Name(family=partner_obj.name)
54 | if partner_obj.title:
55 | vcard.n.value.prefix = partner_obj.title.name
56 |
57 | # address = self.address_get(cr, uid, ids)
58 | address = partner_obj
59 | adr = vcard.add('adr')
60 | if not hasattr(adr, 'value'):
61 | adr.value = vobject.vcard.Address()
62 | adr.value.street = address.street and address.street + (
63 | address.street2 and (" " + address.street2) or '') or ''
64 | adr.value.city = address.city or ''
65 | if address.state_id:
66 | adr.value.region = address.state_id.name or ''
67 | adr.value.code = address.zip or ''
68 | if address.country_id:
69 | adr.value.country_id = address.country_id.name or ''
70 |
71 | if address.phone:
72 | tel = vcard.add('tel')
73 | tel.value = address.phone
74 | tel.type_param = 'work,voice'
75 | if address.mobile:
76 | tel = vcard.add('tel')
77 | tel.value = address.mobile
78 | tel.type_param = 'cell'
79 | if address.fax:
80 | tel = vcard.add('tel')
81 | tel.value = address.fax
82 | tel.type_param = 'work,fax'
83 |
--------------------------------------------------------------------------------
/document_webdav_fast/redirect.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | ##############################################################################
3 | #
4 | # OpenERP, Open Source Management Solution
5 | # Copyright (C) 2010 OpenERP s.a. ().
6 | #
7 | # This program is free software: you can redistribute it and/or modify
8 | # it under the terms of the GNU Affero General Public License as
9 | # published by the Free Software Foundation, either version 3 of the
10 | # License, or (at your option) any later version.
11 | #
12 | # This program is distributed in the hope that it will be useful,
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 | # GNU Affero General Public License for more details.
16 | #
17 | # You should have received a copy of the GNU Affero General Public License
18 | # along with this program. If not, see .
19 | #
20 | ##############################################################################
21 |
22 |
23 | import logging
24 | import urlparse
25 | from openerp.service.websrv_lib import FixSendError, HTTPHandler, HttpOptions
26 | from openerp.service.http_server import HttpLogHandler
27 | _logger = logging.getLogger(__name__)
28 | class RedirectHTTPHandler(HttpLogHandler, FixSendError, HttpOptions, HTTPHandler):
29 |
30 | _HTTP_OPTIONS = { 'Allow': ['OPTIONS', 'GET', 'HEAD', 'PROPFIND'] }
31 | redirect_paths = {}
32 |
33 | def __init__(self, request, client_address, server):
34 | HTTPHandler.__init__(self,request,client_address,server)
35 |
36 | def send_head(self):
37 | """Common code for GET and HEAD commands.
38 |
39 | It will either send the correct redirect (Location) response
40 | or a 404.
41 | """
42 |
43 | if self.path.endswith('/'):
44 | self.path = self.path[:-1]
45 |
46 | if not self.path:
47 | # Return an empty page
48 | self.send_response(200)
49 | self.send_header("Content-Length", 0)
50 | self.end_headers()
51 | return None
52 |
53 | redir_path = self._find_redirect()
54 | if redir_path is False:
55 | self.send_error(404, "File not found")
56 | return None
57 | elif redir_path is None:
58 | return None
59 |
60 | server_proto = getattr(self.server, 'proto', 'http').lower()
61 | addr, port = self.server.server_name, self.server.server_port
62 | try:
63 | addr, port = self.request.getsockname()
64 | except Exception, e:
65 | self.log_error("Cannot calculate own address:" , e)
66 |
67 | if self.headers.has_key('Host'):
68 | uparts = list(urlparse.urlparse("%s://%s:%d"% (server_proto, addr,port)))
69 | uparts[1] = self.headers['Host']
70 | baseuri = urlparse.urlunparse(uparts)
71 | else:
72 | baseuri = "%s://%s:%d"% (server_proto, addr, port )
73 |
74 |
75 | location = baseuri + redir_path
76 | # relative uri: location = self.redirect_paths[self.path]
77 |
78 | self.send_response(301)
79 | self.send_header("Location", location)
80 | self.send_header("Content-Length", 0)
81 | self.end_headers()
82 | # Do we need a Cache-content: header here?
83 | _logger.debug("redirecting %s to %s", self.path, redir_path)
84 | return None
85 |
86 | def do_PROPFIND(self):
87 | self._get_ignore_body()
88 | return self.do_HEAD()
89 |
90 | def _find_redirect(self):
91 | """ Locate self.path among the redirects we can handle
92 | @return The new path, False for 404 or None for already sent error
93 | """
94 | return self.redirect_paths.get(self.path, False)
95 |
96 | def _get_ignore_body(self):
97 | if not self.headers.has_key("content-length"):
98 | return
99 | max_chunk_size = 10*1024*1024
100 | size_remaining = int(self.headers["content-length"])
101 | got = ''
102 | while size_remaining:
103 | chunk_size = min(size_remaining, max_chunk_size)
104 | got = self.rfile.read(chunk_size)
105 | size_remaining -= len(got)
106 |
107 | #eof
108 |
109 |
110 | # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
111 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/document_webdav.pot:
--------------------------------------------------------------------------------
1 | # Translation of OpenERP Server.
2 | # This file contains the translation of the following modules:
3 | # * document_webdav
4 | #
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: OpenERP Server 7.0\n"
8 | "Report-Msgid-Bugs-To: \n"
9 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
10 | "PO-Revision-Date: 2013-06-07 19:37+0000\n"
11 | "Last-Translator: <>\n"
12 | "Language-Team: \n"
13 | "MIME-Version: 1.0\n"
14 | "Content-Type: text/plain; charset=UTF-8\n"
15 | "Content-Transfer-Encoding: \n"
16 | "Plural-Forms: \n"
17 |
18 | #. module: document_webdav
19 | #: field:document.webdav.dir.property,create_date:0
20 | #: field:document.webdav.file.property,create_date:0
21 | msgid "Date Created"
22 | msgstr ""
23 |
24 | #. module: document_webdav
25 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
26 | msgid "Documents"
27 | msgstr ""
28 |
29 | #. module: document_webdav
30 | #: view:document.webdav.dir.property:0
31 | msgid "Document property"
32 | msgstr ""
33 |
34 | #. module: document_webdav
35 | #: view:document.webdav.dir.property:0
36 | #: view:document.webdav.file.property:0
37 | msgid "Search Document properties"
38 | msgstr ""
39 |
40 | #. module: document_webdav
41 | #: view:document.webdav.dir.property:0
42 | #: field:document.webdav.dir.property,namespace:0
43 | #: view:document.webdav.file.property:0
44 | #: field:document.webdav.file.property,namespace:0
45 | msgid "Namespace"
46 | msgstr ""
47 |
48 | #. module: document_webdav
49 | #: field:document.directory,dav_prop_ids:0
50 | msgid "DAV properties"
51 | msgstr ""
52 |
53 | #. module: document_webdav
54 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
55 | msgid "document.webdav.file.property"
56 | msgstr ""
57 |
58 | #. module: document_webdav
59 | #: view:document.webdav.dir.property:0
60 | #: view:document.webdav.file.property:0
61 | msgid "Group By..."
62 | msgstr ""
63 |
64 | #. module: document_webdav
65 | #: view:document.directory:0
66 | msgid "These properties will be added to WebDAV requests"
67 | msgstr ""
68 |
69 | #. module: document_webdav
70 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
71 | msgid "DAV Properties for Documents"
72 | msgstr ""
73 |
74 | #. module: document_webdav
75 | #: view:document.webdav.file.property:0
76 | #: field:document.webdav.file.property,file_id:0
77 | msgid "Document"
78 | msgstr ""
79 |
80 | #. module: document_webdav
81 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
82 | msgid "Folders"
83 | msgstr ""
84 |
85 | #. module: document_webdav
86 | #: view:document.directory:0
87 | msgid "WebDAV properties"
88 | msgstr ""
89 |
90 | #. module: document_webdav
91 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
92 | msgid "DAV Properties for Folders"
93 | msgstr ""
94 |
95 | #. module: document_webdav
96 | #: view:document.directory:0
97 | #: view:document.webdav.dir.property:0
98 | #: view:document.webdav.file.property:0
99 | msgid "Properties"
100 | msgstr ""
101 |
102 | #. module: document_webdav
103 | #: field:document.webdav.dir.property,name:0
104 | #: field:document.webdav.file.property,name:0
105 | msgid "Name"
106 | msgstr ""
107 |
108 | #. module: document_webdav
109 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
110 | msgid "document.webdav.dir.property"
111 | msgstr ""
112 |
113 | #. module: document_webdav
114 | #: field:document.webdav.dir.property,value:0
115 | #: field:document.webdav.file.property,value:0
116 | msgid "Value"
117 | msgstr ""
118 |
119 | #. module: document_webdav
120 | #: field:document.webdav.dir.property,dir_id:0
121 | #: model:ir.model,name:document_webdav.model_document_directory
122 | msgid "Directory"
123 | msgstr ""
124 |
125 | #. module: document_webdav
126 | #: field:document.webdav.dir.property,write_uid:0
127 | #: field:document.webdav.file.property,write_uid:0
128 | msgid "Last Modification User"
129 | msgstr ""
130 |
131 | #. module: document_webdav
132 | #: view:document.webdav.dir.property:0
133 | msgid "Dir"
134 | msgstr ""
135 |
136 | #. module: document_webdav
137 | #: field:document.webdav.dir.property,write_date:0
138 | #: field:document.webdav.file.property,write_date:0
139 | msgid "Date Modified"
140 | msgstr ""
141 |
142 | #. module: document_webdav
143 | #: field:document.webdav.dir.property,create_uid:0
144 | #: field:document.webdav.file.property,create_uid:0
145 | msgid "Creator"
146 | msgstr ""
147 |
148 | #. module: document_webdav
149 | #: view:document.webdav.file.property:0
150 | msgid "Document Property"
151 | msgstr ""
152 |
153 | #. module: document_webdav
154 | #: model:ir.ui.menu,name:document_webdav.menu_properties
155 | msgid "DAV Properties"
156 | msgstr ""
157 |
158 | #. module: document_webdav
159 | #: field:document.webdav.dir.property,do_subst:0
160 | #: field:document.webdav.file.property,do_subst:0
161 | msgid "Substitute"
162 | msgstr ""
163 |
164 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/cs.po:
--------------------------------------------------------------------------------
1 | # Czech translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Czech \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr ""
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr ""
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr ""
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr ""
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr ""
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr ""
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr ""
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr ""
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr ""
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr ""
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr ""
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr ""
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr ""
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr ""
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr ""
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr ""
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr ""
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr ""
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/el.po:
--------------------------------------------------------------------------------
1 | # Greek translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Greek \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr ""
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr ""
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr ""
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr ""
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr ""
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr ""
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr ""
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr ""
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr ""
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr ""
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr ""
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr ""
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr ""
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr ""
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr ""
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr ""
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr ""
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr ""
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/eu.po:
--------------------------------------------------------------------------------
1 | # Basque translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Basque \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr ""
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr ""
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr ""
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr ""
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr ""
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr ""
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr ""
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr ""
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr ""
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr ""
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr ""
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr ""
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr ""
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr ""
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr ""
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr ""
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr ""
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr ""
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/et.po:
--------------------------------------------------------------------------------
1 | # Estonian translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Estonian \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr ""
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr ""
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr ""
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr ""
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr ""
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr ""
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr ""
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr ""
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr ""
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr ""
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr ""
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr ""
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr ""
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr ""
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr ""
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr ""
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr ""
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr ""
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/id.po:
--------------------------------------------------------------------------------
1 | # Indonesian translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Indonesian \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr ""
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr ""
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr ""
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr ""
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr ""
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr ""
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr ""
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr ""
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr ""
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr ""
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr ""
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr ""
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr ""
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr ""
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr ""
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr ""
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr ""
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr ""
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/da.po:
--------------------------------------------------------------------------------
1 | # Danish translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Danish \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr ""
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr ""
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr ""
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr ""
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Gruppér efter..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr ""
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr ""
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr ""
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr ""
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr ""
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr ""
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr ""
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr ""
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr ""
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr ""
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr ""
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr ""
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr ""
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/es_EC.po:
--------------------------------------------------------------------------------
1 | # Spanish (Ecuador) translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Spanish (Ecuador) \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr ""
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr ""
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr ""
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr ""
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr ""
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr ""
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr ""
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr ""
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr ""
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr ""
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr ""
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr ""
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr ""
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr ""
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr ""
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr ""
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr ""
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr ""
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/gu.po:
--------------------------------------------------------------------------------
1 | # Gujarati translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Gujarati \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "બનાવ્યાની તારીખ"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "દસ્તાવેજો"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr ""
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr ""
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr ""
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "ગ્રુપ દ્વારા..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr ""
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "દસ્તાવેજ"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "ફોલ્ડર્સ"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr ""
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "ગુણધર્મો"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "નામ"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr ""
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "મૂલ્ય"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "ડિરેક્ટરી"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr ""
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr ""
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "ફેરફાર કર્યાની તારીખ"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "રચનાર"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr ""
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/mn.po:
--------------------------------------------------------------------------------
1 | # Mongolian translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Mongolian \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Үүсгэсэн огноо"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "Баримтууд"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Баримтыг төлөвөөр хайх"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Нэрийн муж"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr ""
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Бүлэглэвэл..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr ""
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Баримт"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "Хавтсууд"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr ""
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Үзүүлэлтүүд"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Нэр"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr ""
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr ""
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr ""
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr ""
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr ""
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr ""
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr ""
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Орлуулах"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/webdav_setup.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
10 |
11 |
12 | []
13 |
14 |
15 |
16 |
17 | directory
18 |
19 | principals
20 |
21 |
22 |
23 | []
24 |
25 |
26 |
27 |
28 |
29 | directory
30 |
31 | groups
32 |
33 |
34 |
35 | []
36 |
37 |
38 |
39 |
40 | directory
41 |
42 | resources
43 |
44 |
45 | [('id','=',uid)]
46 |
47 |
48 |
49 |
50 |
51 |
52 | ressource
53 |
54 |
55 | __uids__
56 |
57 |
58 | [('id','=',uid)]
59 |
60 |
61 |
62 |
63 |
64 |
65 | ressource
66 |
67 |
68 | users
69 |
70 |
71 | []
72 |
73 |
74 |
75 |
76 | directory
77 |
78 | locations
79 |
80 |
81 | DAV:
82 | current-user-principal
83 | ('href','DAV:','/%s/%s/principals/users/%s' % ('webdav',dbname, username ) )
84 |
85 |
86 |
87 | DAV:
88 | principal-URL
89 | ('href','DAV:','/%s/%s/principals/users/%s' % ('webdav',dbname, username ) )
90 |
91 |
92 |
93 |
94 |
95 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/pl.po:
--------------------------------------------------------------------------------
1 | # Polish translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Polish \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr ""
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr ""
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Przestrzeń nazw"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "Właściwiości DAV"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Grupuj wg..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Te właściwości zostaną dodane do zgłoszeń WebDAV"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr ""
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "Właściwości WebDAV"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Właściwości"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Nazwa"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr ""
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Wartość"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Katalog"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr ""
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Kat"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr ""
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr ""
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Subsytut"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/sr.po:
--------------------------------------------------------------------------------
1 | # Serbian translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Serbian \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr ""
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr ""
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Prostor"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "DAV Svojstva"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Grupisano po..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Ova ce svojstva biti dodana WebDAV zahtevima"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr ""
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "WebDAV Svojstva"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Svojstva"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Ime"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "document.webdav.dir.property"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Vrednost"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Direktorijum"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr ""
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Dir"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr ""
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr ""
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Zamena"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/sr@latin.po:
--------------------------------------------------------------------------------
1 | # Serbian Latin translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Serbian Latin \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr ""
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr ""
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Prostor"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "DAV osobine"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Grupisano po..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Ova ce svojstva biti dodana WebDAV zahtevima"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr ""
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "WebDAV Svojstva"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Svojstva"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Ime"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "document.webdav.dir.property"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Vrednost"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Direktorijum"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr ""
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Dir"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr ""
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr ""
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Zamena"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/ja.po:
--------------------------------------------------------------------------------
1 | # Japanese translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Japanese \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "作成日"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "文書"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "文書の特性を検索する"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "ネームスペース"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "DAV特性"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "document.webdav.file.property"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "グループ化…"
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "これらの特性はWebDAV要求に追加されます。"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "文書のDAV特性"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "文書"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "フォルダ"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "WebDAV特性"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "フォルダのDAV特性"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "特性"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "名前"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "document.webdav.dir.property"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "値"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "ディレクトリ"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "前回、修正したユーザ"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "ディレクトリ"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "変更日"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "作成者"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "DAV特性"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "代替"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/zh_TW.po:
--------------------------------------------------------------------------------
1 | # Chinese (Traditional) translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Chinese (Traditional) \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "建立日期"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "文件"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "搜尋文件目錄"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Namespace"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "DAV 內容"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "document.webdav.file.property"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "群組...."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "這些內容將被加到 WebDAV 請求"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "文件的DAV 內容"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "文件"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "檔案夾"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "WebDAV 內容"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "DAV 檔案夾內容"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "內容"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "名稱"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "document.webdav.dir.property"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "價值"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "目錄"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "最後修改使用者"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "路徑"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "修改日期"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "建立者"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "DAV 內容"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "替代項目"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/bg.po:
--------------------------------------------------------------------------------
1 | # Bulgarian translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Bulgarian \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Дата на създаване"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr ""
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Пространство на имената"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr ""
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "document.webdav.file.property"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Групирай по"
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr ""
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Документ"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr ""
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Свойства"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Име"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "document.webdav.dir.property"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Стойност"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Директория"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Последна промяна потребител"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Посока"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Дата на промяна"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Създател"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Замести"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/zh_CN.po:
--------------------------------------------------------------------------------
1 | # Chinese (Simplified) translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Chinese (Simplified) \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "创建时间"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "文档"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr "单据属性"
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "文档属性列表"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "命名空间"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "DAV属性"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "Copy text \t document.webdav.file.property"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "分组..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "这些属性将被添加到WebDAV请求上"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "文档的DAV属性"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "文件"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "目录"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "webDAV 属性"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "目录的DAV属性"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "属性"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "名称"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "document.webdav.dir.property"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "值"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "目录"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "最近修改用户"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "目录"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "修改日期"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "创建人"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr "单据属性"
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "DAV属性"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "替换"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/ca.po:
--------------------------------------------------------------------------------
1 | # Catalan translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Catalan \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Data de creació"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Cerca propietats del document"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Espai de noms"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "Propietats DAV"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "document.webdav.file.property"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Agrupar per..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Aquestes propietats s'afegiran a les peticions WebDAV"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Document"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "Propietats WebDAV"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Propietats"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Nom"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "document.webdav.dir.propietat"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Valor"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Directori"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Usuari de l'última modificació"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Adr"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Data de modificació"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Creador/a"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Substitut"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/fi.po:
--------------------------------------------------------------------------------
1 | # Finnish translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Finnish \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Luontipäivä"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "Asiakirjat"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Hae dokumentin ominaisuuksia"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Nimiavaruus"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "DAV ominaisuudet"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Ryhmittely.."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Nämä ominaisuudet lisätään WebDAV pyyntöihin"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "Dokumenttien DAV ominaisuudet"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Dokumentti"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "Hakemistot"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "WebDAV ominaisuudet"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "Hakemistojen DAV ominaisuudet"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Ominaisuudet"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Nimi"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr ""
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Arvo"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Hakemisto"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Viimeksi muuttanut käyttäjä"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Hakemisto"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Muokkauspäivä"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Tekijä"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "DAV ominaisuudet"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Korvaa"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/gl.po:
--------------------------------------------------------------------------------
1 | # Galician translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Galician \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Data de creación"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Búsqueda de propiedades do documento"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Espazo de nomes"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "Propiedades DAV"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "document.webdav.file.property"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Agrupar por ..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Estas propiedades engadiranse as peticións WebDAV"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Documento"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "Propiedades WebDAV"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Propiedades"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Nome"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "documento.webdav.dir.propiedad"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Valor"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Directorio"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Usuario última modificación"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Dir"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Data de modificación"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Creador"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Substituto"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/hr.po:
--------------------------------------------------------------------------------
1 | # Croatian translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Croatian
\n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Datum stvaranja"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "Dokumenti"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr "Svojstva dokumenta"
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Pretraži svojstva dokumenta"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Imenski prostor"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "DAV svojstva"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr ""
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Grupiraj po..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Ova svojstva će biti dodana DAV upitima"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "DAV svojstva za dokumente"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Dokument"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "Mape"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "WEB DAV svojstva"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "DAV svojstva za mape"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Svojstva"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Naziv"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr ""
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Vrijednost"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Mapa"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Korisnik posljednje promjene"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr ""
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Datum izmjene"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Autor"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr "Svojstva dokumenta"
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "DAV svojstva"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Zamijeni"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/ar.po:
--------------------------------------------------------------------------------
1 | # Arabic translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Arabic \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "تاريخ الإنشاء"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "مستندات"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr "خصائص الوثيقة"
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "ابحث عن خصائص الوثيقة"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "نطاق أسماء"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "خصائص DAV"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "الوثيق.ويبDAV.الملف.الخاصية"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "تجميع حسب..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "ستضاف هذه الخصائص إلى طلبات صفحة الويب DAV"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "خصائص DAV للوثائق"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "مستند"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "مجلدات"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "خصائص الويبDAV"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "خصائص DAV للمجلدات"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "خصائص"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "الاسم"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "الوثيقة.الويبDAV.مباشر.الخاصية"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "قيمة"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "مسار"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "اخر مستخدم قام بالتعديل"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "مسار"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "تاريخ التعديل"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "المُنشِئ"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr "خصائص الوثيقة"
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "خصائص DAV"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "استبدال"
165 |
--------------------------------------------------------------------------------
/base_vcard/res_partner.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | ##############################################################################
3 | #
4 | # OpenERP, Open Source Management Solution
5 | # Copyright (C) 2010-2013 OpenERP s.a. ().
6 | # Copyright (C) 2013-2014 initOS GmbH & Co. KG ().
7 | # Author Thomas Rehn
8 | # Author Markus Schneider
9 | #
10 | # This program is free software: you can redistribute it and/or modify
11 | # it under the terms of the GNU Affero General Public License as
12 | # published by the Free Software Foundation, either version 3 of the
13 | # License, or (at your option) any later version.
14 | #
15 | # This program is distributed in the hope that it will be useful,
16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 | # GNU Affero General Public License for more details.
19 | #
20 | # You should have received a copy of the GNU Affero General Public License
21 | # along with this program. If not, see .
22 | #
23 | ##############################################################################
24 | from openerp.osv import orm
25 | from .vcard_model import vcard_property
26 | import vobject
27 | from base64 import b64decode
28 |
29 |
30 | class ResPartner(orm.Model):
31 | _inherit = ['res.partner', 'vcard.model']
32 | _name = 'res.partner'
33 |
34 | def _get_vcard_mapping(self):
35 | return super(ResPartner, self)._get_vcard_mapping() + \
36 | [vcard_property('email', column_name='email'),
37 | vcard_property('role', column_name='function'),
38 | vcard_property('note', column_name='comment'),
39 | vcard_property('url', column_name='website'),
40 | vcard_property('fn', column_name='name'),
41 | vcard_property('org', column_name='parent_id',
42 | set_transformation=(lambda x: [x.name])),
43 | # list properties that are handled by _fill_get_vcard /
44 | # _fill_set_vcard directly (so that we know which properties
45 | # are NOT mapped by OpenERP)
46 | vcard_property('n'),
47 | vcard_property('adr'),
48 | vcard_property('tel'),
49 | vcard_property('photo'),
50 | ]
51 |
52 | def _fill_get_vcard(self, cr, uid, ids, vcard):
53 | partner_obj = self.browse(cr, uid, ids)[0]
54 |
55 | vcard.add('n')
56 | vcard.n.value = vobject.vcard.Name(family=partner_obj.name)
57 | if partner_obj.title:
58 | vcard.n.value.prefix = partner_obj.title.name
59 |
60 | # address = self.address_get(cr, uid, ids)
61 | address = partner_obj
62 | adr = vcard.add('adr')
63 | if not hasattr(adr, 'value'):
64 | adr.value = vobject.vcard.Address()
65 | adr.value.street = address.street and address.street + (
66 | address.street2 and (" " + address.street2) or '') or ''
67 | adr.value.city = address.city or ''
68 | if address.state_id:
69 | adr.value.region = address.state_id.name or ''
70 | adr.value.code = address.zip or ''
71 | if address.country_id:
72 | adr.value.country_id = address.country_id.name or ''
73 |
74 | if address.phone:
75 | tel = vcard.add('tel')
76 | tel.value = address.phone
77 | tel.type_param = 'work,voice'
78 | if address.mobile:
79 | tel = vcard.add('tel')
80 | tel.value = address.mobile
81 | tel.type_param = 'cell'
82 | if address.fax:
83 | tel = vcard.add('tel')
84 | tel.value = address.fax
85 | tel.type_param = 'work,fax'
86 |
87 | if partner_obj.image_small:
88 | vcard.add('photo')
89 | # vobject encodes the file for us
90 | vcard.photo.value = b64decode(partner_obj.image_small)
91 | vcard.photo.encoding_param = "B"
92 | vcard.photo.type_param = "PNG"
93 |
94 | def _fill_set_vcard(self, cr, uid, ids, vcard, update_values):
95 | partner_obj = self.browse(cr, uid, ids)[0]
96 | update_values = {}
97 |
98 | # a vcard MUST have an N and FN attribute, so we don't have to
99 | # check whether these are available here
100 |
101 | if 'email' in vcard:
102 | for email in vcard['email']:
103 | if email.value != partner_obj.email:
104 | update_values['email'] = email.value
105 |
106 | # update phone numbers
107 | if 'tel' in vcard:
108 | work_tel = [tel for tel in vcard['tel']
109 | if u'work' in map(lambda x: x.lower(), tel.type_paramlist) and
110 | u'fax' not in map(lambda x: x.lower(), tel.type_paramlist)]
111 | for tel in work_tel:
112 | if tel.value != partner_obj.phone:
113 | update_values['phone'] = tel.value
114 |
115 | cell_tel = [tel for tel in vcard['tel']
116 | if u'cell' in map(lambda x: x.lower(), tel.type_paramlist)]
117 | for tel in cell_tel:
118 | if tel.value != partner_obj.mobile:
119 | update_values['mobile'] = tel.value
120 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/sv.po:
--------------------------------------------------------------------------------
1 | # Swedish translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Swedish \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Skapad datum"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "Dokument"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Sök bland dokumentens egenskaper"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Namnrymd"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "DAV-attribut"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "document.webdav.file.property"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Gruppera"
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Dessa attribut adderas till WebDAV-anropen"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "DAV-attribut för dokument"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Dokument"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "Mappar"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "WebDAV-attribut"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "DAV-attribut för kataloger"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Attribut"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Namn"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "document.webdav.dir.property"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Värde"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Katalog"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Senaste ändring av användaren"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Katalog"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Ändringsdatum"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Författare"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "DAV-attribut"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Ersätt"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/es_PY.po:
--------------------------------------------------------------------------------
1 | # Spanish (Paraguay) translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Spanish (Paraguay) \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Fecha de creación"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr ""
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Buscar propiedades del documento"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Espacio de nombres"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "Propiedades DAV"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "document.webdav.file.property"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Agrupar por..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Estas propiedades se añadirán a las peticiones WebDAV"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr ""
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Documento"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr ""
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "Propiedades WebDAV"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr ""
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Propiedades"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Nombre"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "documento.webdav.dir.propiedad"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Valor"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Carpeta"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Usuario de la última modificación"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Carp"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Fecha de modificación"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Autor"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr ""
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Substituir"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/tr.po:
--------------------------------------------------------------------------------
1 | # Turkish translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2013-02-06 22:21+0000\n"
12 | "Last-Translator: Ahmet Altınışık \n"
13 | "Language-Team: Turkish \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Oluşturma Tarihi"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "Belgeler"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr "Döküman özelliği"
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Belge özelliklerini ara"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "İsimalanı"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "DAV özellikleri"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "belge.webdav.dosya.özellik"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Grupla..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Özellikler WebDAV isteklerine aklenecektir"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "Belgeler için DAV Özellikleri"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Belge"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "Klasörler"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "WebDAV özellikleri"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "Klasörler için DAV özellikleri"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Özellikler"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Adı"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "belge.webdav.diz.özellik"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Değer"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Dizin"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Son Değiştiren Kullanıcı"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Dizin"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Değiştirilme Tarihi"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Oluşturan"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr "Döküman özelliği"
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "DAV Özellikleri"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Yedek"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/nb.po:
--------------------------------------------------------------------------------
1 | # Norwegian Bokmal translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Norwegian Bokmal \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Dato opprettet"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "Dokumenter"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Søk Dokumentegenskaper."
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Navnerom"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "DAV egenskaper"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "Dokumentet.WebDAV.fil.egenskap"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Grupper etter ..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Disse egenskapene vil bli lagt til WebDAV-forespørsler"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "DAV Eiendommer for Dokumenter."
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Dokument"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "Mapper"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "WebDAV egenskaper."
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "DAV egenskaper for mapper."
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Egenskaper"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Navn"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "Dokumentet.WebDAV.dir.eiendom"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Verdi"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Katalog"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Siste endring Bruker"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Retn"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Dato endret"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Opprettet av"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "DAV Egenskaper."
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Erstatte"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/sl.po:
--------------------------------------------------------------------------------
1 | # Slovenian translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2013-11-10 09:08+0000\n"
12 | "Last-Translator: Dušan Laznik (Mentis) \n"
13 | "Language-Team: Slovenian \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Datum nastanka"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "Dokumenti"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr "Lastnost dokumenta"
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Iskanje lastnosti dokumenta"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Imenski prostor"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "DAV lasnosti"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "document.webdav.file.property"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Združi po ..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Te lastnosti bodo dodane k WebDAV zahtevkom"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "DAV lastnosti za dokumente"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Dokument"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "Mape"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "WebDAV lastnosti"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "DAV lastnosti za mape"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Lastnosti"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Ime"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "document.webdav.dir.property"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Vrednost"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Mapa"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Zadnja sprememba"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Mapa"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Datum spremembe"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Avtor"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr "Lastnost dokumenta"
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "DAV lastnosti"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Zamenjava"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/ru.po:
--------------------------------------------------------------------------------
1 | # Russian translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2013-01-17 10:00+0000\n"
12 | "Last-Translator: Olga \n"
13 | "Language-Team: Russian \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Дата создания"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "Документы"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr "Свойство документа"
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Поиск по свойствам документа"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Пространство имён"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "Настройки DAV"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "document.webdav.file.property"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Группировать по ..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Эти свойства будут добавлены к запросам WebDAV"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "Свойства DAV для документов"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Документ"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "Папки"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "Настройки WebDAV"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "Свойства DAV для папок"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Свойства"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Название"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "document.webdav.dir.property"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Значение"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Каталог"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Автор последнего изменения"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Кат."
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Дата изменения"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Создатель"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr "Свойство документа"
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "Свойства DAV"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Заменить"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/it.po:
--------------------------------------------------------------------------------
1 | # Italian translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-22 14:26+0000\n"
12 | "Last-Translator: Sergio Corato \n"
13 | "Language-Team: Italian \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Data di creazione"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "Documenti"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr "Proprietà documento"
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Cerca proprietà documento"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Namespace"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "Proprietà DAV"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "document.webdav.file.property"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Raggruppa per..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Queste proprietà verranno aggiunte alle richieste WebDAV"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "Proprietà DAV per Documenti"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Documento"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "Cartelle"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "Proprietà WebDAV"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "Proprietà DAV per Cartelle"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Proprietà"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Nome"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "document.webdav.dir.property"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Valore"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Directory"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Ultimo utente modificatore"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Dir"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Data ultima modifica"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Creatore"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr "Proprietà Documento"
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "Proprietà DAV"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Sostituire"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/en_GB.po:
--------------------------------------------------------------------------------
1 | # English (United Kingdom) translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2013-02-06 15:14+0000\n"
12 | "Last-Translator: mrx5682 \n"
13 | "Language-Team: English (United Kingdom) \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Date Created"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "Documents"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr "Document property"
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Search Document properties"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Namespace"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "DAV properties"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "document.webdav.file.property"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Group By..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "These properties will be added to WebDAV requests"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "DAV Properties for Documents"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Document"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "Folders"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "WebDAV properties"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "DAV Properties for Folders"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Properties"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Name"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "document.webdav.dir.property"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Value"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Directory"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Last Modification User"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Dir"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Date Modified"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Creator"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr "Document Property"
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "DAV Properties"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Substitute"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/ro.po:
--------------------------------------------------------------------------------
1 | # Romanian translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2013-01-23 21:01+0000\n"
12 | "Last-Translator: ERPSystems.ro \n"
13 | "Language-Team: Romanian \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Data Creata"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "Documente"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr "Actul de proprietate"
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Cautare Proprietati documente"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Spatiu nume"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "Proprietati DAV"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "proprietate.fisier.document.webdav"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Grupeaza dupa..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Aceste proprietati vor fi adaugate cererilor WebDAV"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "Proprietati DAV pentru Documente"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Document"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "Foldere"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "Proprietari WebDAV"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "Proprietati DAV pentru Foldere"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Proprietati"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Nume"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "proprietate.dir.document.webdav"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Valoare"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Director"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Utilizatorul ultimei modificari"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Director"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Data modificare"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Creator"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr "Actul de Proprietate"
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "Proprietati DAV"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Inlocuitor"
165 |
--------------------------------------------------------------------------------
/document_webdav_fast/i18n/es_CR.po:
--------------------------------------------------------------------------------
1 | # Spanish (Costa Rica) translation for openobject-addons
2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
3 | # This file is distributed under the same license as the openobject-addons package.
4 | # FIRST AUTHOR , 2012.
5 | #
6 | msgid ""
7 | msgstr ""
8 | "Project-Id-Version: openobject-addons\n"
9 | "Report-Msgid-Bugs-To: FULL NAME \n"
10 | "POT-Creation-Date: 2013-06-07 19:37+0000\n"
11 | "PO-Revision-Date: 2012-12-21 23:00+0000\n"
12 | "Last-Translator: FULL NAME \n"
13 | "Language-Team: Spanish (Costa Rica) \n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n"
18 | "X-Generator: Launchpad (build 16831)\n"
19 |
20 | #. module: document_webdav
21 | #: field:document.webdav.dir.property,create_date:0
22 | #: field:document.webdav.file.property,create_date:0
23 | msgid "Date Created"
24 | msgstr "Fecha de creación"
25 |
26 | #. module: document_webdav
27 | #: model:ir.ui.menu,name:document_webdav.menu_document_props
28 | msgid "Documents"
29 | msgstr "Documentos"
30 |
31 | #. module: document_webdav
32 | #: view:document.webdav.dir.property:0
33 | msgid "Document property"
34 | msgstr ""
35 |
36 | #. module: document_webdav
37 | #: view:document.webdav.dir.property:0
38 | #: view:document.webdav.file.property:0
39 | msgid "Search Document properties"
40 | msgstr "Buscar propiedades del documento"
41 |
42 | #. module: document_webdav
43 | #: view:document.webdav.dir.property:0
44 | #: field:document.webdav.dir.property,namespace:0
45 | #: view:document.webdav.file.property:0
46 | #: field:document.webdav.file.property,namespace:0
47 | msgid "Namespace"
48 | msgstr "Espacio de nombres"
49 |
50 | #. module: document_webdav
51 | #: field:document.directory,dav_prop_ids:0
52 | msgid "DAV properties"
53 | msgstr "Propiedades DAV"
54 |
55 | #. module: document_webdav
56 | #: model:ir.model,name:document_webdav.model_document_webdav_file_property
57 | msgid "document.webdav.file.property"
58 | msgstr "document.webdav.file.property"
59 |
60 | #. module: document_webdav
61 | #: view:document.webdav.dir.property:0
62 | #: view:document.webdav.file.property:0
63 | msgid "Group By..."
64 | msgstr "Agrupar por..."
65 |
66 | #. module: document_webdav
67 | #: view:document.directory:0
68 | msgid "These properties will be added to WebDAV requests"
69 | msgstr "Estas propiedades se añadirán a las peticiones WebDAV"
70 |
71 | #. module: document_webdav
72 | #: model:ir.actions.act_window,name:document_webdav.action_file_props_form
73 | msgid "DAV Properties for Documents"
74 | msgstr "DAV Propiedades para Documentos"
75 |
76 | #. module: document_webdav
77 | #: view:document.webdav.file.property:0
78 | #: field:document.webdav.file.property,file_id:0
79 | msgid "Document"
80 | msgstr "Documento"
81 |
82 | #. module: document_webdav
83 | #: model:ir.ui.menu,name:document_webdav.menu_folder_props
84 | msgid "Folders"
85 | msgstr "Directorios"
86 |
87 | #. module: document_webdav
88 | #: view:document.directory:0
89 | msgid "WebDAV properties"
90 | msgstr "Propiedades WebDAV"
91 |
92 | #. module: document_webdav
93 | #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
94 | msgid "DAV Properties for Folders"
95 | msgstr "DAV Propiedades para carpetas"
96 |
97 | #. module: document_webdav
98 | #: view:document.directory:0
99 | #: view:document.webdav.dir.property:0
100 | #: view:document.webdav.file.property:0
101 | msgid "Properties"
102 | msgstr "Propiedades"
103 |
104 | #. module: document_webdav
105 | #: field:document.webdav.dir.property,name:0
106 | #: field:document.webdav.file.property,name:0
107 | msgid "Name"
108 | msgstr "Nombre"
109 |
110 | #. module: document_webdav
111 | #: model:ir.model,name:document_webdav.model_document_webdav_dir_property
112 | msgid "document.webdav.dir.property"
113 | msgstr "documento.webdav.dir.propiedad"
114 |
115 | #. module: document_webdav
116 | #: field:document.webdav.dir.property,value:0
117 | #: field:document.webdav.file.property,value:0
118 | msgid "Value"
119 | msgstr "Valor"
120 |
121 | #. module: document_webdav
122 | #: field:document.webdav.dir.property,dir_id:0
123 | #: model:ir.model,name:document_webdav.model_document_directory
124 | msgid "Directory"
125 | msgstr "Directorio"
126 |
127 | #. module: document_webdav
128 | #: field:document.webdav.dir.property,write_uid:0
129 | #: field:document.webdav.file.property,write_uid:0
130 | msgid "Last Modification User"
131 | msgstr "Usuario última modificación"
132 |
133 | #. module: document_webdav
134 | #: view:document.webdav.dir.property:0
135 | msgid "Dir"
136 | msgstr "Dir"
137 |
138 | #. module: document_webdav
139 | #: field:document.webdav.dir.property,write_date:0
140 | #: field:document.webdav.file.property,write_date:0
141 | msgid "Date Modified"
142 | msgstr "Fecha de Modificación"
143 |
144 | #. module: document_webdav
145 | #: field:document.webdav.dir.property,create_uid:0
146 | #: field:document.webdav.file.property,create_uid:0
147 | msgid "Creator"
148 | msgstr "Autor"
149 |
150 | #. module: document_webdav
151 | #: view:document.webdav.file.property:0
152 | msgid "Document Property"
153 | msgstr ""
154 |
155 | #. module: document_webdav
156 | #: model:ir.ui.menu,name:document_webdav.menu_properties
157 | msgid "DAV Properties"
158 | msgstr "DAV Propiedades"
159 |
160 | #. module: document_webdav
161 | #: field:document.webdav.dir.property,do_subst:0
162 | #: field:document.webdav.file.property,do_subst:0
163 | msgid "Substitute"
164 | msgstr "Substituir"
165 |
--------------------------------------------------------------------------------