odoo-addon-dms 17.0.1.2.0__py3-none-any.whl → 18.0.1.0.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/dms/README.rst +69 -62
- odoo/addons/dms/__manifest__.py +1 -5
- odoo/addons/dms/data/onboarding_data.xml +0 -1
- odoo/addons/dms/i18n/de.po +0 -203
- odoo/addons/dms/i18n/dms.pot +51 -55
- odoo/addons/dms/i18n/es.po +0 -214
- odoo/addons/dms/i18n/fr.po +0 -45
- odoo/addons/dms/i18n/he_IL.po +0 -139
- odoo/addons/dms/i18n/it.po +0 -219
- odoo/addons/dms/i18n/nl.po +0 -6
- odoo/addons/dms/i18n/pt.po +0 -215
- odoo/addons/dms/i18n/pt_BR.po +0 -201
- odoo/addons/dms/models/access_groups.py +9 -8
- odoo/addons/dms/models/directory.py +21 -23
- odoo/addons/dms/models/dms_category.py +2 -2
- odoo/addons/dms/models/dms_file.py +15 -16
- odoo/addons/dms/models/dms_security_mixin.py +46 -20
- odoo/addons/dms/models/ir_binary.py +2 -2
- odoo/addons/dms/models/mixins_thumbnail.py +1 -1
- odoo/addons/dms/models/storage.py +3 -3
- odoo/addons/dms/readme/CONTRIBUTORS.md +2 -0
- odoo/addons/dms/readme/ROADMAP.md +2 -0
- odoo/addons/dms/static/description/index.html +13 -6
- odoo/addons/dms/static/src/js/fields/path_json/path_owl.esm.js +5 -5
- odoo/addons/dms/static/src/js/fields/preview_binary/preview_record.esm.js +2 -4
- odoo/addons/dms/static/src/js/views/dms_file_upload.esm.js +2 -5
- odoo/addons/dms/static/src/js/views/file_kanban_controller.esm.js +0 -2
- odoo/addons/dms/static/src/js/views/file_kanban_record.esm.js +0 -2
- odoo/addons/dms/static/src/js/views/file_kanban_renderer.esm.js +0 -2
- odoo/addons/dms/static/src/js/views/file_kanban_view.esm.js +0 -2
- odoo/addons/dms/static/src/js/views/file_list_controller.esm.js +0 -2
- odoo/addons/dms/static/src/js/views/file_list_renderer.esm.js +0 -2
- odoo/addons/dms/static/src/js/views/file_list_view.esm.js +0 -2
- odoo/addons/dms/static/src/js/views/search_panel.esm.js +1 -5
- odoo/addons/dms/static/src/models/attachment.esm.js +0 -2
- odoo/addons/dms/static/src/models/attachment_image.esm.js +0 -2
- odoo/addons/dms/static/src/models/attachment_viewer_viewable.esm.js +0 -2
- odoo/addons/dms/static/tests/tours/dms_portal_tour.esm.js +3 -7
- odoo/addons/dms/template/portal.xml +8 -6
- odoo/addons/dms/tests/common.py +9 -10
- odoo/addons/dms/tests/test_benchmark.py +19 -1
- odoo/addons/dms/tests/test_directory.py +8 -5
- odoo/addons/dms/tests/test_file_database.py +1 -1
- odoo/addons/dms/tests/test_portal.py +16 -17
- odoo/addons/dms/views/dms_access_groups_views.xml +13 -13
- odoo/addons/dms/views/dms_category.xml +5 -5
- odoo/addons/dms/views/dms_directory.xml +101 -110
- odoo/addons/dms/views/dms_file.xml +66 -84
- odoo/addons/dms/views/dms_tag.xml +14 -33
- odoo/addons/dms/views/menu.xml +22 -13
- odoo/addons/dms/views/storage.xml +189 -193
- odoo/addons/dms/wizards/wizard_dms_file_move_views.xml +1 -1
- {odoo_addon_dms-17.0.1.2.0.dist-info → odoo_addon_dms-18.0.1.0.0.2.dist-info}/METADATA +72 -65
- {odoo_addon_dms-17.0.1.2.0.dist-info → odoo_addon_dms-18.0.1.0.0.2.dist-info}/RECORD +56 -59
- odoo/addons/dms/static/src/scss/directory_kanban.scss +0 -53
- odoo/addons/dms/static/src/scss/dms_common.scss +0 -69
- odoo/addons/dms/static/src/scss/file_kanban.scss +0 -70
- {odoo_addon_dms-17.0.1.2.0.dist-info → odoo_addon_dms-18.0.1.0.0.2.dist-info}/WHEEL +0 -0
- {odoo_addon_dms-17.0.1.2.0.dist-info → odoo_addon_dms-18.0.1.0.0.2.dist-info}/top_level.txt +0 -0
odoo/addons/dms/README.rst
CHANGED
@@ -7,7 +7,7 @@ Document Management System
|
|
7
7
|
!! This file is generated by oca-gen-addon-readme !!
|
8
8
|
!! changes will be overwritten. !!
|
9
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
10
|
-
!! source digest: sha256:
|
10
|
+
!! source digest: sha256:904150d6b7037648a3ed02450c9b27d802f4cee614b59b1fa582f48093e1a0ed
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
12
12
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -17,13 +17,13 @@ Document Management System
|
|
17
17
|
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
|
18
18
|
:alt: License: LGPL-3
|
19
19
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fdms-lightgray.png?logo=github
|
20
|
-
:target: https://github.com/OCA/dms/tree/
|
20
|
+
:target: https://github.com/OCA/dms/tree/18.0/dms
|
21
21
|
:alt: OCA/dms
|
22
22
|
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
23
|
-
:target: https://translation.odoo-community.org/projects/dms-
|
23
|
+
:target: https://translation.odoo-community.org/projects/dms-18-0/dms-18-0-dms
|
24
24
|
:alt: Translate me on Weblate
|
25
25
|
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
26
|
-
:target: https://runboat.odoo-community.org/builds?repo=OCA/dms&target_branch=
|
26
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/dms&target_branch=18.0
|
27
27
|
:alt: Try me on Runboat
|
28
28
|
|
29
29
|
|badge1| |badge2| |badge3| |badge4| |badge5|
|
@@ -68,9 +68,9 @@ To configure this module, you need to:
|
|
68
68
|
2. Create a new document storage. You can choose between three options
|
69
69
|
on ``Save Type``:
|
70
70
|
|
71
|
-
-
|
72
|
-
-
|
73
|
-
-
|
71
|
+
- ``Database``: Store the files on the database as a field
|
72
|
+
- ``Attachment``: Store the files as attachments
|
73
|
+
- ``File``: Store the files on the file system
|
74
74
|
|
75
75
|
2. Create an access group
|
76
76
|
-------------------------
|
@@ -78,13 +78,13 @@ To configure this module, you need to:
|
|
78
78
|
1. Next, create an administrative access group. Go to *Configuration ->
|
79
79
|
Access Groups*.
|
80
80
|
|
81
|
-
-
|
82
|
-
|
83
|
-
|
84
|
-
-
|
85
|
-
|
86
|
-
-
|
87
|
-
|
81
|
+
- Create a new group, name it appropriately, and turn on all three
|
82
|
+
permissions (Create, Write and Unlink. Read is implied and always
|
83
|
+
enabled).
|
84
|
+
- Add any other top-level administrative users to the group if needed
|
85
|
+
(your user should already be there).
|
86
|
+
- You can create other groups in here later for fine-grained access
|
87
|
+
control.
|
88
88
|
|
89
89
|
3. Create a directory
|
90
90
|
---------------------
|
@@ -94,18 +94,18 @@ To configure this module, you need to:
|
|
94
94
|
2. Create a new directory, mark it as root and select the previously
|
95
95
|
created setting.
|
96
96
|
|
97
|
-
-
|
98
|
-
|
99
|
-
|
100
|
-
|
97
|
+
- Select the *Groups* tab and add your administrative group created
|
98
|
+
above. If your directory was already created before the group, you
|
99
|
+
can also add it in the access groups (*Configuration -> Access
|
100
|
+
Groups*).
|
101
101
|
|
102
102
|
3. In the directory settings, you can also add other access groups
|
103
103
|
(created above) that will be able to:
|
104
104
|
|
105
|
-
-
|
106
|
-
-
|
107
|
-
-
|
108
|
-
-
|
105
|
+
- read
|
106
|
+
- create
|
107
|
+
- write
|
108
|
+
- delete
|
109
109
|
|
110
110
|
Migration
|
111
111
|
=========
|
@@ -151,25 +151,28 @@ access to that resource, no matter if logged or not.
|
|
151
151
|
Known issues / Roadmap
|
152
152
|
======================
|
153
153
|
|
154
|
-
-
|
155
|
-
-
|
156
|
-
|
157
|
-
-
|
158
|
-
|
159
|
-
-
|
160
|
-
|
161
|
-
-
|
162
|
-
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
-
|
172
|
-
|
154
|
+
- Files preview in portal
|
155
|
+
- Allow to download folder in portal and create zip file with all
|
156
|
+
content
|
157
|
+
- Save in cache own_root directories and update in every
|
158
|
+
create/write/unlink function
|
159
|
+
- Add a migration procedure for converting an storage to attachment one
|
160
|
+
for populating existing records with attachments as folders
|
161
|
+
- Add a link from attachment view in chatter to linked documents
|
162
|
+
- If Inherit permissions from related record (the
|
163
|
+
inherit_access_from_parent_record field from storage) is changed when
|
164
|
+
directories already exist, inconsistencies may occur because groups
|
165
|
+
defined in the directories and subdirectories will still exist, all
|
166
|
+
groups in these directories should be removed before changing.
|
167
|
+
- Since portal users can read ``dms.storage`` records, if your module
|
168
|
+
extends this model to another storage backend that needs using
|
169
|
+
secrets, remember to forbid access to the secrets fields by other
|
170
|
+
means. It would be nice to be able to remove that rule at some point.
|
171
|
+
- Searchpanel in files: Highlight items (shading) without records when
|
172
|
+
filtering something (by name for example).
|
173
|
+
- Accessing the clipboard (for example copy share link of
|
174
|
+
file/directory) is limited to secure connections. It also happens in
|
175
|
+
any part of Odoo.
|
173
176
|
|
174
177
|
Bug Tracker
|
175
178
|
===========
|
@@ -177,7 +180,7 @@ Bug Tracker
|
|
177
180
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/dms/issues>`_.
|
178
181
|
In case of trouble, please check there if your issue has already been reported.
|
179
182
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
180
|
-
`feedback <https://github.com/OCA/dms/issues/new?body=module:%20dms%0Aversion:%
|
183
|
+
`feedback <https://github.com/OCA/dms/issues/new?body=module:%20dms%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
181
184
|
|
182
185
|
Do not contact contributors directly about support or help with technical issues.
|
183
186
|
|
@@ -193,36 +196,40 @@ Authors
|
|
193
196
|
Contributors
|
194
197
|
------------
|
195
198
|
|
196
|
-
-
|
197
|
-
-
|
198
|
-
-
|
199
|
-
-
|
200
|
-
-
|
199
|
+
- Mathias Markl <mathias.markl@mukit.at>
|
200
|
+
- Enric Tobella <etobella@creublanca.es>
|
201
|
+
- Antoni Romera
|
202
|
+
- Gelu Boros <gelu.boros@rgbconsulting.com>
|
203
|
+
- `Tecnativa <https://www.tecnativa.com>`__:
|
201
204
|
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
+
- Víctor Martínez
|
206
|
+
- Pedro M. Baeza
|
207
|
+
- Jairo Llopis
|
205
208
|
|
206
|
-
-
|
209
|
+
- `Elego <https://www.elegosoft.com>`__:
|
207
210
|
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
+
- Yu Weng <yweng@elegosoft.com>
|
212
|
+
- Philip Witte <phillip.witte@elegosoft.com>
|
213
|
+
- Khanh Bui <khanh.bui@mail.elegosoft.com>
|
211
214
|
|
212
|
-
-
|
215
|
+
- `Subteno <https://www.subteno.com>`__:
|
213
216
|
|
214
|
-
|
217
|
+
- Timothée Vannier <tva@subteno.com>
|
218
|
+
|
219
|
+
- `Kencove <https://www.kencove.com>`__:
|
220
|
+
|
221
|
+
- Mohamed Alkobrosli <malkobrosly@kencove.com>
|
215
222
|
|
216
223
|
Other credits
|
217
224
|
-------------
|
218
225
|
|
219
226
|
Some pictures are based on or inspired by:
|
220
227
|
|
221
|
-
-
|
222
|
-
-
|
223
|
-
-
|
224
|
-
-
|
225
|
-
|
228
|
+
- `Roundicons <https://www.flaticon.com/authors/roundicons>`__
|
229
|
+
- `Smashicons <https://www.flaticon.com/authors/smashicons>`__
|
230
|
+
- `EmojiOne <https://github.com/EmojiTwo/emojitwo>`__ : Portal DMS icon
|
231
|
+
- `GitHub Octicons <https://github.com/primer/octicons/>`__ : The main
|
232
|
+
DMS icon
|
226
233
|
|
227
234
|
Maintainers
|
228
235
|
-----------
|
@@ -237,6 +244,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
237
244
|
mission is to support the collaborative development of Odoo features and
|
238
245
|
promote its widespread use.
|
239
246
|
|
240
|
-
This module is part of the `OCA/dms <https://github.com/OCA/dms/tree/
|
247
|
+
This module is part of the `OCA/dms <https://github.com/OCA/dms/tree/18.0/dms>`_ project on GitHub.
|
241
248
|
|
242
249
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
odoo/addons/dms/__manifest__.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
{
|
6
6
|
"name": "Document Management System",
|
7
7
|
"summary": """Document Management System for Odoo""",
|
8
|
-
"version": "
|
8
|
+
"version": "18.0.1.0.0",
|
9
9
|
"category": "Document Management",
|
10
10
|
"license": "LGPL-3",
|
11
11
|
"website": "https://github.com/OCA/dms",
|
@@ -43,10 +43,6 @@
|
|
43
43
|
],
|
44
44
|
"assets": {
|
45
45
|
"web.assets_backend": [
|
46
|
-
# Style
|
47
|
-
"dms/static/src/scss/directory_kanban.scss",
|
48
|
-
"dms/static/src/scss/file_kanban.scss",
|
49
|
-
"dms/static/src/scss/dms_common.scss",
|
50
46
|
# JS
|
51
47
|
"dms/static/src/models/*.js",
|
52
48
|
"dms/static/src/js/fields/path_json/path_owl.esm.js",
|
@@ -4,7 +4,6 @@
|
|
4
4
|
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
5
5
|
-->
|
6
6
|
<odoo noupdate="1">
|
7
|
-
|
8
7
|
<!-- Steps (has to be fist so that onboarding panel can access it) -->
|
9
8
|
<record id="onboarding_step_document_storage" model="onboarding.onboarding.step">
|
10
9
|
<field name="title">Storage</field>
|
odoo/addons/dms/i18n/de.po
CHANGED
@@ -2310,206 +2310,3 @@ msgstr "exe, msi"
|
|
2310
2310
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_directory_form
|
2311
2311
|
msgid "mail.catchall.domain"
|
2312
2312
|
msgstr ""
|
2313
|
-
|
2314
|
-
#~ msgid ""
|
2315
|
-
#~ "<i class=\"fa fa-archive\"/>\n"
|
2316
|
-
#~ " Archive"
|
2317
|
-
#~ msgstr ""
|
2318
|
-
#~ "<i class=\"fa fa-archive\"/>\n"
|
2319
|
-
#~ " Archivieren"
|
2320
|
-
|
2321
|
-
#~ msgid ""
|
2322
|
-
#~ "<i class=\"fa fa-archive\"/>\n"
|
2323
|
-
#~ " Unarchive"
|
2324
|
-
#~ msgstr ""
|
2325
|
-
#~ "<i class=\"fa fa-archive\"/>\n"
|
2326
|
-
#~ " Wiederherstellen"
|
2327
|
-
|
2328
|
-
#~ msgid ""
|
2329
|
-
#~ "<i class=\"fa fa-download\"/>\n"
|
2330
|
-
#~ " Download"
|
2331
|
-
#~ msgstr ""
|
2332
|
-
#~ "<i class=\"fa fa-download\"/>\n"
|
2333
|
-
#~ " Herunterladen"
|
2334
|
-
|
2335
|
-
#~ msgid ""
|
2336
|
-
#~ "<i class=\"fa fa-external-link\"/>\n"
|
2337
|
-
#~ " Open"
|
2338
|
-
#~ msgstr ""
|
2339
|
-
#~ "<i class=\"fa fa-external-link\"/>\n"
|
2340
|
-
#~ " Öffnen"
|
2341
|
-
|
2342
|
-
#~ msgid ""
|
2343
|
-
#~ "<i class=\"fa fa-external-link\"/>\n"
|
2344
|
-
#~ " Open"
|
2345
|
-
#~ msgstr ""
|
2346
|
-
#~ "<i class=\"fa fa-external-link\"/>\n"
|
2347
|
-
#~ " Öffnen"
|
2348
|
-
|
2349
|
-
#~ msgid ""
|
2350
|
-
#~ "<i class=\"fa fa-file-o\"/>\n"
|
2351
|
-
#~ " Files"
|
2352
|
-
#~ msgstr ""
|
2353
|
-
#~ "<i class=\"fa fa-file-o\"/>\n"
|
2354
|
-
#~ " Dateien"
|
2355
|
-
|
2356
|
-
#~ msgid ""
|
2357
|
-
#~ "<i class=\"fa fa-folder-o\"/>\n"
|
2358
|
-
#~ " Directories"
|
2359
|
-
#~ msgstr ""
|
2360
|
-
#~ "<i class=\"fa fa-folder-o\"/>\n"
|
2361
|
-
#~ " Verzeichnisse"
|
2362
|
-
|
2363
|
-
#~ msgid ""
|
2364
|
-
#~ "<i class=\"fa fa-lock\"/>\n"
|
2365
|
-
#~ " Lock"
|
2366
|
-
#~ msgstr ""
|
2367
|
-
#~ "<i class=\"fa fa-lock\"/>\n"
|
2368
|
-
#~ " Sperren"
|
2369
|
-
|
2370
|
-
#~ msgid ""
|
2371
|
-
#~ "<i class=\"fa fa-pencil-square-o\"/>\n"
|
2372
|
-
#~ " Edit"
|
2373
|
-
#~ msgstr ""
|
2374
|
-
#~ "<i class=\"fa fa-pencil-square-o\"/>\n"
|
2375
|
-
#~ " Bearbeiten"
|
2376
|
-
|
2377
|
-
#~ msgid ""
|
2378
|
-
#~ "<i class=\"fa fa-pencil-square-o\"/>\n"
|
2379
|
-
#~ " Edit"
|
2380
|
-
#~ msgstr ""
|
2381
|
-
#~ "<i class=\"fa fa-pencil-square-o\"/>\n"
|
2382
|
-
#~ " Bearbeiten"
|
2383
|
-
|
2384
|
-
#~ msgid ""
|
2385
|
-
#~ "<i class=\"fa fa-trash-o\"/>\n"
|
2386
|
-
#~ " Delete"
|
2387
|
-
#~ msgstr ""
|
2388
|
-
#~ "<i class=\"fa fa-trash-o\"/>\n"
|
2389
|
-
#~ " Löschen"
|
2390
|
-
|
2391
|
-
#~ msgid ""
|
2392
|
-
#~ "<i class=\"fa fa-trash-o\"/>\n"
|
2393
|
-
#~ " Delete"
|
2394
|
-
#~ msgstr ""
|
2395
|
-
#~ "<i class=\"fa fa-trash-o\"/>\n"
|
2396
|
-
#~ " Löschen"
|
2397
|
-
|
2398
|
-
#~ msgid ""
|
2399
|
-
#~ "<i class=\"fa fa-unlock-alt\"/>\n"
|
2400
|
-
#~ " Unlock"
|
2401
|
-
#~ msgstr ""
|
2402
|
-
#~ "<i class=\"fa fa-unlock-alt\"/>\n"
|
2403
|
-
#~ " Entsperren"
|
2404
|
-
|
2405
|
-
#~ msgid ""
|
2406
|
-
#~ "<span class=\"o_form_label\">\n"
|
2407
|
-
#~ " Storages\n"
|
2408
|
-
#~ " </span>"
|
2409
|
-
#~ msgstr ""
|
2410
|
-
#~ "<span class=\"o_form_label\">\n"
|
2411
|
-
#~ " Speicherorte\n"
|
2412
|
-
#~ " </span>"
|
2413
|
-
|
2414
|
-
#~ msgid ""
|
2415
|
-
#~ "<span class=\"o_form_label\">File\n"
|
2416
|
-
#~ " Extensions\n"
|
2417
|
-
#~ " </span>"
|
2418
|
-
#~ msgstr ""
|
2419
|
-
#~ "<span class=\"o_form_label\">Dateiendungen\n"
|
2420
|
-
#~ " </span>"
|
2421
|
-
|
2422
|
-
#~ msgid "<span class=\"o_form_label\">File Size</span>"
|
2423
|
-
#~ msgstr "<span class=\"o_form_label\">Dateigröße</span>"
|
2424
|
-
|
2425
|
-
#, python-format
|
2426
|
-
#~ msgid "A file with the same name already exists."
|
2427
|
-
#~ msgstr "Es existiert bereits eine Datei mit diesem Namen."
|
2428
|
-
|
2429
|
-
#~ msgid "Alias domain"
|
2430
|
-
#~ msgstr "Alias-Domain"
|
2431
|
-
|
2432
|
-
#~ msgid ""
|
2433
|
-
#~ "Define the maximum upload size of a\n"
|
2434
|
-
#~ " file in MB"
|
2435
|
-
#~ msgstr ""
|
2436
|
-
#~ "Legen Sie die maximale Upload-Größe einer Datei\n"
|
2437
|
-
#~ " in MB fest"
|
2438
|
-
|
2439
|
-
#~ msgid "Dropdown menu"
|
2440
|
-
#~ msgstr "Dropdown-Menü"
|
2441
|
-
|
2442
|
-
#~ msgid ""
|
2443
|
-
#~ "Indicate if directories and files access work only with related model "
|
2444
|
-
#~ "access (for example, if some directories are related with any sale, only "
|
2445
|
-
#~ "users with read access to these sale can acess)"
|
2446
|
-
#~ msgstr ""
|
2447
|
-
#~ "Gibt an, ob Verzeichnisse und Dateizugriff nur mit verwandtem "
|
2448
|
-
#~ "Modellzugriff funktionieren (z. B. wenn einige Verzeichnisse mit einem "
|
2449
|
-
#~ "Verkauf in Verbindung stehen, können nur Benutzer mit Lesezugriff auf "
|
2450
|
-
#~ "diesen Verkauf zugreifen)"
|
2451
|
-
|
2452
|
-
#, python-format
|
2453
|
-
#~ msgid "It is not possible to change parent to other storage."
|
2454
|
-
#~ msgstr ""
|
2455
|
-
#~ "Es ist nicht möglich, das Eltern-Objekt auf einen anderen Speicherort "
|
2456
|
-
#~ "einzustellen."
|
2457
|
-
|
2458
|
-
#~ msgid "Last Modified on"
|
2459
|
-
#~ msgstr "Zuletzt geändert am"
|
2460
|
-
|
2461
|
-
#, python-format
|
2462
|
-
#~ msgid "Loading"
|
2463
|
-
#~ msgstr "Lädt"
|
2464
|
-
|
2465
|
-
#~ msgid "Main Attachment"
|
2466
|
-
#~ msgstr "Hauptanhang"
|
2467
|
-
|
2468
|
-
#~ msgid "Only admin user"
|
2469
|
-
#~ msgstr "Nur Admin Benutzer"
|
2470
|
-
|
2471
|
-
#~ msgid "Operations"
|
2472
|
-
#~ msgstr "Operationen"
|
2473
|
-
|
2474
|
-
#~ msgid "Owner"
|
2475
|
-
#~ msgstr "Besitzer"
|
2476
|
-
|
2477
|
-
#~ msgid "The configuration is done!"
|
2478
|
-
#~ msgstr "Die Konfiguration ist abgeschlossen!"
|
2479
|
-
|
2480
|
-
#~ msgid ""
|
2481
|
-
#~ "The owner of records created upon receiving emails on this alias. If this "
|
2482
|
-
#~ "field is not set the system will attempt to find the right owner based on "
|
2483
|
-
#~ "the sender (From) address, or will use the Administrator account if no "
|
2484
|
-
#~ "system user is found for that address."
|
2485
|
-
#~ msgstr ""
|
2486
|
-
#~ "Der Eigentümer der Datensätze, die beim Empfang von E-Mails mit diesem "
|
2487
|
-
#~ "Alias erstellt werden. Wenn dieses Feld nicht gesetzt ist, versucht das "
|
2488
|
-
#~ "System, den richtigen Besitzer anhand der Absenderadresse zu finden, oder "
|
2489
|
-
#~ "es verwendet das Administratorkonto, wenn kein Systembenutzer für diese "
|
2490
|
-
#~ "Adresse gefunden wird."
|
2491
|
-
|
2492
|
-
#~ msgid ""
|
2493
|
-
#~ "The save type is used to determine how a file is saved by the\n"
|
2494
|
-
#~ " system. If you change this setting, you can migrate existing "
|
2495
|
-
#~ "files\n"
|
2496
|
-
#~ " manually by triggering the action."
|
2497
|
-
#~ msgstr ""
|
2498
|
-
#~ "Der Speichertyp wird verwendet, um zu bestimmen, wie eine Datei vom\n"
|
2499
|
-
#~ " System gespeichert wird. Wenn Sie diese Einstellung ändern, "
|
2500
|
-
#~ "können Sie vorhandene Dateien\n"
|
2501
|
-
#~ " manuell migrieren, indem Sie die Aktion auslösen."
|
2502
|
-
|
2503
|
-
#, python-format
|
2504
|
-
#~ msgid "Viewer"
|
2505
|
-
#~ msgstr "Betrachter"
|
2506
|
-
|
2507
|
-
#, python-format
|
2508
|
-
#~ msgid "Error has not been raised"
|
2509
|
-
#~ msgstr "Es ist ein Fehler aufgetreten."
|
2510
|
-
|
2511
|
-
#~ msgid "Model Name"
|
2512
|
-
#~ msgstr "Modellname"
|
2513
|
-
|
2514
|
-
#~ msgid "SMS Delivery error"
|
2515
|
-
#~ msgstr "SMS-Zustellfehler"
|