odoo-addon-dms 16.0.1.8.0.5__py3-none-any.whl → 17.0.1.0.0.3__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 +132 -78
- odoo/addons/dms/__manifest__.py +34 -16
- odoo/addons/dms/actions/file.xml +1 -3
- odoo/addons/dms/controllers/main.py +0 -34
- odoo/addons/dms/controllers/portal.py +178 -92
- odoo/addons/dms/data/onboarding_data.xml +77 -0
- odoo/addons/dms/demo/access_group.xml +3 -9
- odoo/addons/dms/i18n/de.po +332 -221
- odoo/addons/dms/i18n/dms.pot +137 -174
- odoo/addons/dms/i18n/es.po +355 -226
- odoo/addons/dms/i18n/fr.po +256 -342
- odoo/addons/dms/i18n/he_IL.po +208 -181
- odoo/addons/dms/i18n/it.po +369 -248
- odoo/addons/dms/i18n/nl.po +140 -168
- odoo/addons/dms/i18n/pt.po +352 -223
- odoo/addons/dms/i18n/pt_BR.po +358 -256
- odoo/addons/dms/i18n/ru.po +138 -172
- odoo/addons/dms/models/__init__.py +7 -1
- odoo/addons/dms/models/abstract_dms_mixin.py +1 -1
- odoo/addons/dms/models/access_groups.py +18 -11
- odoo/addons/dms/models/base.py +10 -2
- odoo/addons/dms/models/directory.py +46 -75
- odoo/addons/dms/models/{category.py → dms_category.py} +10 -42
- odoo/addons/dms/models/dms_file.py +125 -147
- odoo/addons/dms/models/dms_security_mixin.py +26 -22
- odoo/addons/dms/models/ir_attachment.py +0 -1
- odoo/addons/dms/models/ir_binary.py +19 -0
- odoo/addons/dms/models/mail_thread.py +2 -4
- odoo/addons/dms/models/mixins_thumbnail.py +13 -8
- odoo/addons/dms/models/onboarding_onboarding.py +16 -0
- odoo/addons/dms/models/onboarding_onboarding_step.py +50 -0
- odoo/addons/dms/models/res_company.py +22 -47
- odoo/addons/dms/models/res_config_settings.py +0 -1
- odoo/addons/dms/models/storage.py +4 -24
- odoo/addons/dms/models/tag.py +1 -1
- odoo/addons/dms/readme/CONFIGURE.md +59 -0
- odoo/addons/dms/readme/CONTRIBUTORS.md +14 -0
- odoo/addons/dms/readme/CREDITS.md +6 -0
- odoo/addons/dms/readme/DESCRIPTION.md +9 -0
- odoo/addons/dms/readme/INSTALL.md +4 -0
- odoo/addons/dms/readme/ROADMAP.md +19 -0
- odoo/addons/dms/readme/USAGE.md +11 -0
- odoo/addons/dms/security/security.xml +1 -0
- odoo/addons/dms/static/description/icon.png +0 -0
- odoo/addons/dms/static/description/icon.svg +4 -1
- odoo/addons/dms/static/description/index.html +133 -88
- odoo/addons/dms/static/description/portal_icon.svg +12 -0
- odoo/addons/dms/static/src/js/fields/{path_owl.esm.js → path_json/path_owl.esm.js} +22 -4
- odoo/addons/dms/static/src/js/fields/{path_owl.xml → path_json/path_owl.xml} +7 -4
- odoo/addons/dms/static/src/js/fields/preview_binary/preview_record.esm.js +47 -0
- odoo/addons/dms/static/src/js/{views/fields/binary → fields/preview_binary}/preview_record.xml +5 -4
- odoo/addons/dms/static/src/js/views/dms_file_upload.esm.js +155 -148
- odoo/addons/dms/static/src/js/views/file_kanban_controller.xml +0 -1
- odoo/addons/dms/static/src/js/views/file_kanban_record.esm.js +26 -27
- odoo/addons/dms/static/src/js/views/file_kanban_renderer.esm.js +1 -2
- odoo/addons/dms/static/src/js/views/file_kanban_renderer.xml +12 -16
- odoo/addons/dms/static/src/js/views/file_kanban_view.esm.js +11 -9
- odoo/addons/dms/static/src/js/views/file_list_controller.esm.js +1 -1
- odoo/addons/dms/static/src/js/views/file_list_renderer.xml +1 -7
- odoo/addons/dms/static/src/js/views/file_list_view.esm.js +11 -9
- odoo/addons/dms/static/src/js/views/search_panel.esm.js +9 -10
- odoo/addons/dms/static/src/models/attachment.esm.js +83 -82
- odoo/addons/dms/static/src/models/attachment_image.esm.js +30 -28
- odoo/addons/dms/static/src/models/attachment_viewer_viewable.esm.js +27 -25
- odoo/addons/dms/static/src/scss/directory_kanban.scss +28 -73
- odoo/addons/dms/static/src/scss/dms_common.scss +69 -0
- odoo/addons/dms/static/src/scss/file_kanban.scss +22 -34
- odoo/addons/dms/static/src/scss/portal.scss +12 -0
- odoo/addons/dms/static/tests/tours/dms_portal_tour.esm.js +46 -0
- odoo/addons/dms/{views/dms_portal_templates.xml → template/portal.xml} +13 -3
- odoo/addons/dms/tests/common.py +20 -4
- odoo/addons/dms/tests/data/mail01.eml +2 -2
- odoo/addons/dms/tests/data/mail02.eml +2 -2
- odoo/addons/dms/tests/test_benchmark.py +16 -21
- odoo/addons/dms/tests/test_directory.py +128 -40
- odoo/addons/dms/tests/test_file.py +112 -30
- odoo/addons/dms/tests/test_file_database.py +50 -24
- odoo/addons/dms/tests/test_portal.py +50 -37
- odoo/addons/dms/tests/test_storage_attachment.py +85 -63
- odoo/addons/dms/tests/test_storage_database.py +89 -35
- odoo/addons/dms/tools/file.py +63 -11
- odoo/addons/dms/views/dms_access_groups_views.xml +2 -17
- odoo/addons/dms/views/{category.xml → dms_category.xml} +4 -9
- odoo/addons/dms/views/{directory.xml → dms_directory.xml} +168 -176
- odoo/addons/dms/views/dms_file.xml +170 -191
- odoo/addons/dms/views/{tag.xml → dms_tag.xml} +50 -53
- odoo/addons/dms/views/menu.xml +52 -21
- odoo/addons/dms/views/res_config_settings.xml +31 -82
- odoo/addons/dms/views/storage.xml +7 -13
- odoo_addon_dms-17.0.1.0.0.3.dist-info/METADATA +257 -0
- {odoo_addon_dms-16.0.1.8.0.5.dist-info → odoo_addon_dms-17.0.1.0.0.3.dist-info}/RECORD +93 -95
- {odoo_addon_dms-16.0.1.8.0.5.dist-info → odoo_addon_dms-17.0.1.0.0.3.dist-info}/WHEEL +1 -1
- odoo_addon_dms-17.0.1.0.0.3.dist-info/top_level.txt +1 -0
- odoo/addons/dms/i18n/fa.po +0 -2277
- odoo/addons/dms/i18n/fa_IR.po +0 -2277
- odoo/addons/dms/readme/CONFIGURE.rst +0 -40
- odoo/addons/dms/readme/CONTRIBUTORS.rst +0 -16
- odoo/addons/dms/readme/CREDITS.rst +0 -6
- odoo/addons/dms/readme/DESCRIPTION.rst +0 -6
- odoo/addons/dms/readme/INSTALL.rst +0 -9
- odoo/addons/dms/readme/ROADMAP.rst +0 -8
- odoo/addons/dms/readme/USAGE.rst +0 -8
- odoo/addons/dms/static/src/js/components/path/path.esm.js +0 -0
- odoo/addons/dms/static/src/js/dms_portal_tour.js +0 -57
- odoo/addons/dms/static/src/js/fields/path.js +0 -81
- odoo/addons/dms/static/src/js/views/fields/binary/preview_record.esm.js +0 -35
- odoo/addons/dms/static/src/js/views/many_drop_target.js +0 -98
- odoo/addons/dms/static/src/scss/variables.scss +0 -9
- odoo/addons/dms/static/src/xml/views.xml +0 -72
- odoo/addons/dms/template/assets.xml +0 -44
- odoo/addons/dms/template/onboarding.xml +0 -97
- odoo_addon_dms-16.0.1.8.0.5.dist-info/METADATA +0 -203
- odoo_addon_dms-16.0.1.8.0.5.dist-info/top_level.txt +0 -1
odoo/addons/dms/i18n/he_IL.po
CHANGED
@@ -34,6 +34,13 @@ msgid ""
|
|
34
34
|
" "
|
35
35
|
msgstr ""
|
36
36
|
|
37
|
+
#. module: dms
|
38
|
+
#. odoo-python
|
39
|
+
#: code:addons/dms/models/access_groups.py:0
|
40
|
+
#, python-format
|
41
|
+
msgid "%s (copy)"
|
42
|
+
msgstr ""
|
43
|
+
|
37
44
|
#. module: dms
|
38
45
|
#. odoo-python
|
39
46
|
#: code:addons/dms/models/directory.py:0
|
@@ -48,35 +55,25 @@ msgstr "%s קבצים"
|
|
48
55
|
msgid "%s Subdirectories"
|
49
56
|
msgstr ""
|
50
57
|
|
51
|
-
#. module: dms
|
52
|
-
#: model_terms:ir.ui.view,arch_db:dms.document_onboarding_directory_panel
|
53
|
-
msgid "/dms/static/lib/img/banner/documents_onboarding_directory.png"
|
54
|
-
msgstr ""
|
55
|
-
|
56
|
-
#. module: dms
|
57
|
-
#: model_terms:ir.ui.view,arch_db:dms.document_onboarding_file_panel
|
58
|
-
msgid "/dms/static/lib/img/banner/documents_onboarding_file.png"
|
59
|
-
msgstr ""
|
60
|
-
|
61
58
|
#. module: dms
|
62
59
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_kanban
|
63
60
|
msgid ""
|
64
61
|
"<i class=\"fa fa-archive\"/>\n"
|
65
|
-
"
|
62
|
+
" Archive"
|
66
63
|
msgstr ""
|
67
64
|
|
68
65
|
#. module: dms
|
69
66
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_kanban
|
70
67
|
msgid ""
|
71
68
|
"<i class=\"fa fa-archive\"/>\n"
|
72
|
-
"
|
69
|
+
" Unarchive"
|
73
70
|
msgstr ""
|
74
71
|
|
75
72
|
#. module: dms
|
76
73
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_kanban
|
77
74
|
msgid ""
|
78
75
|
"<i class=\"fa fa-download\"/>\n"
|
79
|
-
"
|
76
|
+
" Download"
|
80
77
|
msgstr ""
|
81
78
|
|
82
79
|
#. module: dms
|
@@ -95,100 +92,58 @@ msgstr ""
|
|
95
92
|
#. module: dms
|
96
93
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_directory_kanban
|
97
94
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_kanban
|
98
|
-
msgid ""
|
99
|
-
"<i class=\"fa fa-external-link\"/>\n"
|
100
|
-
" Open"
|
101
|
-
msgstr ""
|
102
|
-
|
103
|
-
#. module: dms
|
104
95
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_tag_kanban
|
105
96
|
msgid ""
|
106
97
|
"<i class=\"fa fa-external-link\"/>\n"
|
107
|
-
"
|
98
|
+
" Open"
|
108
99
|
msgstr ""
|
109
100
|
|
110
101
|
#. module: dms
|
111
102
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_directory_kanban
|
112
103
|
msgid ""
|
113
104
|
"<i class=\"fa fa-file-o\"/>\n"
|
114
|
-
"
|
105
|
+
" Files"
|
115
106
|
msgstr ""
|
116
107
|
|
117
108
|
#. module: dms
|
118
109
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_directory_kanban
|
119
110
|
msgid ""
|
120
111
|
"<i class=\"fa fa-folder-o\"/>\n"
|
121
|
-
"
|
112
|
+
" Directories"
|
122
113
|
msgstr ""
|
123
114
|
|
124
115
|
#. module: dms
|
125
116
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_kanban
|
126
117
|
msgid ""
|
127
118
|
"<i class=\"fa fa-lock\"/>\n"
|
128
|
-
"
|
119
|
+
" Lock"
|
129
120
|
msgstr ""
|
130
121
|
|
131
122
|
#. module: dms
|
132
123
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_directory_kanban
|
133
124
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_kanban
|
134
|
-
msgid ""
|
135
|
-
"<i class=\"fa fa-pencil-square-o\"/>\n"
|
136
|
-
" Edit"
|
137
|
-
msgstr ""
|
138
|
-
|
139
|
-
#. module: dms
|
140
125
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_tag_kanban
|
141
126
|
msgid ""
|
142
127
|
"<i class=\"fa fa-pencil-square-o\"/>\n"
|
143
|
-
"
|
128
|
+
" Edit"
|
144
129
|
msgstr ""
|
145
130
|
|
146
131
|
#. module: dms
|
147
132
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_directory_kanban
|
148
133
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_kanban
|
149
|
-
msgid ""
|
150
|
-
"<i class=\"fa fa-trash-o\"/>\n"
|
151
|
-
" Delete"
|
152
|
-
msgstr ""
|
153
|
-
|
154
|
-
#. module: dms
|
155
134
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_tag_kanban
|
156
135
|
msgid ""
|
157
136
|
"<i class=\"fa fa-trash-o\"/>\n"
|
158
|
-
"
|
137
|
+
" Delete"
|
159
138
|
msgstr ""
|
160
139
|
|
161
140
|
#. module: dms
|
162
141
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_kanban
|
163
142
|
msgid ""
|
164
143
|
"<i class=\"fa fa-unlock-alt\"/>\n"
|
165
|
-
"
|
144
|
+
" Unlock"
|
166
145
|
msgstr ""
|
167
146
|
|
168
|
-
#. module: dms
|
169
|
-
#: model_terms:ir.ui.view,arch_db:dms.res_config_settings_view_form
|
170
|
-
msgid ""
|
171
|
-
"<span class=\"o_form_label\">\n"
|
172
|
-
" Storages\n"
|
173
|
-
" </span>"
|
174
|
-
msgstr ""
|
175
|
-
"<span class=\"o_form_label\">\n"
|
176
|
-
" מאגרים\n"
|
177
|
-
" </span>"
|
178
|
-
|
179
|
-
#. module: dms
|
180
|
-
#: model_terms:ir.ui.view,arch_db:dms.res_config_settings_view_form
|
181
|
-
msgid ""
|
182
|
-
"<span class=\"o_form_label\">File\n"
|
183
|
-
" Extensions\n"
|
184
|
-
" </span>"
|
185
|
-
msgstr ""
|
186
|
-
|
187
|
-
#. module: dms
|
188
|
-
#: model_terms:ir.ui.view,arch_db:dms.res_config_settings_view_form
|
189
|
-
msgid "<span class=\"o_form_label\">File Size</span>"
|
190
|
-
msgstr "<span class=\"o_form_label\">גודל הקובץ </span>"
|
191
|
-
|
192
147
|
#. module: dms
|
193
148
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_directory_form
|
194
149
|
msgid ""
|
@@ -197,11 +152,22 @@ msgid ""
|
|
197
152
|
"span>"
|
198
153
|
msgstr ""
|
199
154
|
|
155
|
+
#. module: dms
|
156
|
+
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_kanban
|
157
|
+
#: model_terms:ir.ui.view,arch_db:dms.view_dms_tag_kanban
|
158
|
+
msgid "<span>Actions</span>"
|
159
|
+
msgstr ""
|
160
|
+
|
200
161
|
#. module: dms
|
201
162
|
#: model_terms:ir.ui.view,arch_db:dms.portal_my_dms_breadcrumbs
|
202
163
|
msgid "<span>Documents</span>"
|
203
164
|
msgstr ""
|
204
165
|
|
166
|
+
#. module: dms
|
167
|
+
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_kanban
|
168
|
+
msgid "<span>Operations</span>"
|
169
|
+
msgstr ""
|
170
|
+
|
205
171
|
#. module: dms
|
206
172
|
#: model:ir.model.fields,help:dms.field_dms_directory__alias_defaults
|
207
173
|
msgid ""
|
@@ -250,8 +216,8 @@ msgstr ""
|
|
250
216
|
#. odoo-python
|
251
217
|
#: code:addons/dms/models/dms_file.py:0
|
252
218
|
#, python-format
|
253
|
-
msgid "A file with the same name already exists."
|
254
|
-
msgstr "
|
219
|
+
msgid "A file with the same name already exists in this directory."
|
220
|
+
msgstr ""
|
255
221
|
|
256
222
|
#. module: dms
|
257
223
|
#. odoo-python
|
@@ -302,7 +268,6 @@ msgstr "נדרשת פעולה"
|
|
302
268
|
|
303
269
|
#. module: dms
|
304
270
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_directory_kanban
|
305
|
-
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_kanban
|
306
271
|
msgid "Actions"
|
307
272
|
msgstr "פעולות"
|
308
273
|
|
@@ -368,6 +333,21 @@ msgstr "כינוי"
|
|
368
333
|
msgid "Alias Contact Security"
|
369
334
|
msgstr "כינוי אבטחת איש קשר"
|
370
335
|
|
336
|
+
#. module: dms
|
337
|
+
#: model:ir.model.fields,field_description:dms.field_dms_directory__alias_domain_id
|
338
|
+
msgid "Alias Domain"
|
339
|
+
msgstr ""
|
340
|
+
|
341
|
+
#. module: dms
|
342
|
+
#: model:ir.model.fields,field_description:dms.field_dms_directory__alias_domain
|
343
|
+
msgid "Alias Domain Name"
|
344
|
+
msgstr ""
|
345
|
+
|
346
|
+
#. module: dms
|
347
|
+
#: model:ir.model.fields,field_description:dms.field_dms_directory__alias_full_name
|
348
|
+
msgid "Alias Email"
|
349
|
+
msgstr ""
|
350
|
+
|
371
351
|
#. module: dms
|
372
352
|
#: model:ir.model.fields,field_description:dms.field_dms_directory__alias_name
|
373
353
|
msgid "Alias Name"
|
@@ -379,9 +359,14 @@ msgid "Alias Setting"
|
|
379
359
|
msgstr "הגדרת כינוי"
|
380
360
|
|
381
361
|
#. module: dms
|
382
|
-
#: model:ir.model.fields,field_description:dms.
|
383
|
-
msgid "Alias
|
384
|
-
msgstr "
|
362
|
+
#: model:ir.model.fields,field_description:dms.field_dms_directory__alias_status
|
363
|
+
msgid "Alias Status"
|
364
|
+
msgstr ""
|
365
|
+
|
366
|
+
#. module: dms
|
367
|
+
#: model:ir.model.fields,help:dms.field_dms_directory__alias_status
|
368
|
+
msgid "Alias status assessed on the last message received."
|
369
|
+
msgstr ""
|
385
370
|
|
386
371
|
#. module: dms
|
387
372
|
#. odoo-python
|
@@ -690,12 +675,12 @@ msgid "Create Access"
|
|
690
675
|
msgstr "צור גישה"
|
691
676
|
|
692
677
|
#. module: dms
|
693
|
-
#:
|
678
|
+
#: model:onboarding.onboarding.step,button_text:dms.onboarding_step_create_directory
|
694
679
|
msgid "Create Directory"
|
695
680
|
msgstr "צור ספריה"
|
696
681
|
|
697
682
|
#. module: dms
|
698
|
-
#:
|
683
|
+
#: model:onboarding.onboarding.step,button_text:dms.onboarding_step_document_storage
|
699
684
|
msgid "Create Storage"
|
700
685
|
msgstr "צור מאגר"
|
701
686
|
|
@@ -705,12 +690,12 @@ msgid "Create a new Category."
|
|
705
690
|
msgstr "צור קטגוריה חדשה."
|
706
691
|
|
707
692
|
#. module: dms
|
708
|
-
#:
|
693
|
+
#: model:onboarding.onboarding.step,description:dms.onboarding_step_document_storage
|
709
694
|
msgid "Create a new Document Storage."
|
710
695
|
msgstr "צור מאגר מסמכים חדש."
|
711
696
|
|
712
697
|
#. module: dms
|
713
|
-
#:
|
698
|
+
#: model:onboarding.onboarding.step,description:dms.onboarding_step_create_directory
|
714
699
|
msgid "Create a new Root Directory."
|
715
700
|
msgstr "צור ספרייה ראשית חדשה."
|
716
701
|
|
@@ -816,12 +801,8 @@ msgstr "הגדר סיומות קבצים אסורות"
|
|
816
801
|
|
817
802
|
#. module: dms
|
818
803
|
#: model_terms:ir.ui.view,arch_db:dms.res_config_settings_view_form
|
819
|
-
msgid ""
|
820
|
-
"Define the maximum upload size of a\n"
|
821
|
-
" file in MB"
|
804
|
+
msgid "Define the maximum upload size of a file in MB"
|
822
805
|
msgstr ""
|
823
|
-
"הגדר את גודל ההעלאה המקסימלי של\n"
|
824
|
-
" קובץ ב- MB"
|
825
806
|
|
826
807
|
#. module: dms
|
827
808
|
#: model:ir.model.fields,help:dms.field_res_config_settings__documents_forbidden_extensions
|
@@ -872,7 +853,7 @@ msgstr ""
|
|
872
853
|
#: model:ir.model,name:dms.model_dms_directory
|
873
854
|
#: model:ir.model.fields,field_description:dms.field_dms_file__directory_id
|
874
855
|
#: model:ir.model.fields,field_description:dms.field_wizard_dms_file_move__directory_id
|
875
|
-
#:
|
856
|
+
#: model:onboarding.onboarding.step,title:dms.onboarding_step_create_directory
|
876
857
|
msgid "Directory"
|
877
858
|
msgstr "ספריה"
|
878
859
|
|
@@ -893,6 +874,11 @@ msgstr "שם תצוגה"
|
|
893
874
|
msgid "Document Category"
|
894
875
|
msgstr "קטגוריית מסמכים"
|
895
876
|
|
877
|
+
#. module: dms
|
878
|
+
#: model:onboarding.onboarding.step,done_text:dms.onboarding_step_document_storage
|
879
|
+
msgid "Document Storage Created!"
|
880
|
+
msgstr ""
|
881
|
+
|
896
882
|
#. module: dms
|
897
883
|
#: model:ir.model,name:dms.model_dms_tag
|
898
884
|
msgid "Document Tag"
|
@@ -935,13 +921,6 @@ msgstr "מדיניות ניהול שלבי ספריות"
|
|
935
921
|
msgid "Done"
|
936
922
|
msgstr "בוצע"
|
937
923
|
|
938
|
-
#. module: dms
|
939
|
-
#: model_terms:ir.ui.view,arch_db:dms.view_dms_directory_kanban
|
940
|
-
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_kanban
|
941
|
-
#: model_terms:ir.ui.view,arch_db:dms.view_dms_tag_kanban
|
942
|
-
msgid "Dropdown menu"
|
943
|
-
msgstr "תפריט נפתח"
|
944
|
-
|
945
924
|
#. module: dms
|
946
925
|
#: model:ir.model.fields,field_description:dms.field_dms_file__is_lock_editor
|
947
926
|
msgid "Editor"
|
@@ -953,6 +932,7 @@ msgid "Elements"
|
|
953
932
|
msgstr "אלמנטים"
|
954
933
|
|
955
934
|
#. module: dms
|
935
|
+
#: model:ir.model.fields,field_description:dms.field_dms_directory__alias_email
|
956
936
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_directory_form
|
957
937
|
msgid "Email Alias"
|
958
938
|
msgstr "כינוי דוא\"ל"
|
@@ -962,9 +942,14 @@ msgstr "כינוי דוא\"ל"
|
|
962
942
|
msgid "Email Thread"
|
963
943
|
msgstr ""
|
964
944
|
|
945
|
+
#. module: dms
|
946
|
+
#: model:ir.model.fields,help:dms.field_dms_directory__alias_domain
|
947
|
+
msgid "Email domain e.g. 'example.com' in 'odoo@example.com'"
|
948
|
+
msgstr ""
|
949
|
+
|
965
950
|
#. module: dms
|
966
951
|
#. odoo-python
|
967
|
-
#: code:addons/dms/models/
|
952
|
+
#: code:addons/dms/models/dms_category.py:0
|
968
953
|
#, python-format
|
969
954
|
msgid "Error! You cannot create recursive categories."
|
970
955
|
msgstr "שְׁגִיאָה! אינך יכול ליצור קטגוריות רקורסיביות."
|
@@ -999,15 +984,35 @@ msgstr ""
|
|
999
984
|
|
1000
985
|
#. module: dms
|
1001
986
|
#: model:ir.model,name:dms.model_dms_file
|
1002
|
-
#:
|
987
|
+
#: model:onboarding.onboarding.step,title:dms.onboarding_step_upload_file
|
1003
988
|
msgid "File"
|
1004
989
|
msgstr "קובץ"
|
1005
990
|
|
991
|
+
#. module: dms
|
992
|
+
#: model_terms:ir.ui.view,arch_db:dms.res_config_settings_view_form
|
993
|
+
msgid "File Extensions"
|
994
|
+
msgstr ""
|
995
|
+
|
996
|
+
#. module: dms
|
997
|
+
#: model:onboarding.onboarding,name:dms.onboarding_onboarding_dms_file
|
998
|
+
msgid "File Onboarding"
|
999
|
+
msgstr ""
|
1000
|
+
|
1001
|
+
#. module: dms
|
1002
|
+
#: model_terms:ir.ui.view,arch_db:dms.res_config_settings_view_form
|
1003
|
+
msgid "File Size"
|
1004
|
+
msgstr ""
|
1005
|
+
|
1006
1006
|
#. module: dms
|
1007
1007
|
#: model_terms:ir.ui.view,arch_db:dms.res_config_settings_view_form
|
1008
1008
|
msgid "File Upload"
|
1009
1009
|
msgstr "העלאת קובץ"
|
1010
1010
|
|
1011
|
+
#. module: dms
|
1012
|
+
#: model:ir.model,name:dms.model_ir_binary
|
1013
|
+
msgid "File streaming helper model for controllers"
|
1014
|
+
msgstr ""
|
1015
|
+
|
1011
1016
|
#. module: dms
|
1012
1017
|
#: model:ir.actions.act_window,name:dms.action_dms_file
|
1013
1018
|
#: model:ir.actions.act_window,name:dms.action_dms_file_migration
|
@@ -1021,7 +1026,6 @@ msgstr "העלאת קובץ"
|
|
1021
1026
|
#: model:ir.model.fields,field_description:dms.field_dms_storage__storage_file_ids
|
1022
1027
|
#: model:ir.model.fields,field_description:dms.field_dms_tag__file_ids
|
1023
1028
|
#: model:ir.ui.menu,name:dms.menu_dms_file
|
1024
|
-
#: model_terms:ir.ui.view,arch_db:dms.view_dms_access_groups_form
|
1025
1029
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_category_form
|
1026
1030
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_directory_form
|
1027
1031
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_directory_tree
|
@@ -1049,6 +1053,11 @@ msgstr "קבצים משמשים לשמירת תוכן ישירות בOdoo."
|
|
1049
1053
|
msgid "Filestore"
|
1050
1054
|
msgstr "מאגר"
|
1051
1055
|
|
1056
|
+
#. module: dms
|
1057
|
+
#: model:onboarding.onboarding.step,done_text:dms.onboarding_step_upload_file
|
1058
|
+
msgid "First File Uploaded!"
|
1059
|
+
msgstr ""
|
1060
|
+
|
1052
1061
|
#. module: dms
|
1053
1062
|
#: model:ir.model.fields,field_description:dms.field_dms_directory__message_follower_ids
|
1054
1063
|
#: model:ir.model.fields,field_description:dms.field_dms_file__message_follower_ids
|
@@ -1232,7 +1241,7 @@ msgstr ""
|
|
1232
1241
|
msgid ""
|
1233
1242
|
"Indicate if directories and files access work only with related model access "
|
1234
1243
|
"(for example, if some directories are related with any sale, only users with "
|
1235
|
-
"read access to these sale can
|
1244
|
+
"read access to these sale can access)"
|
1236
1245
|
msgstr ""
|
1237
1246
|
|
1238
1247
|
#. module: dms
|
@@ -1323,14 +1332,14 @@ msgstr "ספרייה ראשית"
|
|
1323
1332
|
#. odoo-python
|
1324
1333
|
#: code:addons/dms/models/directory.py:0
|
1325
1334
|
#, python-format
|
1326
|
-
msgid "It is not possible to change
|
1335
|
+
msgid "It is not possible to change the storage."
|
1327
1336
|
msgstr ""
|
1328
1337
|
|
1329
1338
|
#. module: dms
|
1330
1339
|
#. odoo-python
|
1331
1340
|
#: code:addons/dms/models/directory.py:0
|
1332
1341
|
#, python-format
|
1333
|
-
msgid "It is not possible to change
|
1342
|
+
msgid "It is not possible to change to a parent with other storage."
|
1334
1343
|
msgstr ""
|
1335
1344
|
|
1336
1345
|
#. module: dms
|
@@ -1341,18 +1350,6 @@ msgstr ""
|
|
1341
1350
|
msgid "Just done"
|
1342
1351
|
msgstr "הרגע בוצע"
|
1343
1352
|
|
1344
|
-
#. module: dms
|
1345
|
-
#: model:ir.model.fields,field_description:dms.field_dms_access_group____last_update
|
1346
|
-
#: model:ir.model.fields,field_description:dms.field_dms_category____last_update
|
1347
|
-
#: model:ir.model.fields,field_description:dms.field_dms_directory____last_update
|
1348
|
-
#: model:ir.model.fields,field_description:dms.field_dms_file____last_update
|
1349
|
-
#: model:ir.model.fields,field_description:dms.field_dms_storage____last_update
|
1350
|
-
#: model:ir.model.fields,field_description:dms.field_dms_tag____last_update
|
1351
|
-
#: model:ir.model.fields,field_description:dms.field_wizard_dms_file_move____last_update
|
1352
|
-
#: model:ir.model.fields,field_description:dms.field_wizard_dms_share____last_update
|
1353
|
-
msgid "Last Modified on"
|
1354
|
-
msgstr "שינוי אחרון ב"
|
1355
|
-
|
1356
1353
|
#. module: dms
|
1357
1354
|
#: model:ir.model.fields,field_description:dms.field_dms_access_group__write_uid
|
1358
1355
|
#: model:ir.model.fields,field_description:dms.field_dms_category__write_uid
|
@@ -1408,11 +1405,9 @@ msgid "Linked attachments record ID"
|
|
1408
1405
|
msgstr ""
|
1409
1406
|
|
1410
1407
|
#. module: dms
|
1411
|
-
|
1412
|
-
|
1413
|
-
|
1414
|
-
msgid "Loading"
|
1415
|
-
msgstr "טוען"
|
1408
|
+
#: model:ir.model.fields,field_description:dms.field_dms_directory__alias_incoming_local
|
1409
|
+
msgid "Local-part based incoming detection"
|
1410
|
+
msgstr ""
|
1416
1411
|
|
1417
1412
|
#. module: dms
|
1418
1413
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_form
|
@@ -1421,6 +1416,7 @@ msgstr "נעל"
|
|
1421
1416
|
|
1422
1417
|
#. module: dms
|
1423
1418
|
#: model:ir.model.fields,field_description:dms.field_dms_file__is_locked
|
1419
|
+
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_form
|
1424
1420
|
msgid "Locked"
|
1425
1421
|
msgstr "נעול"
|
1426
1422
|
|
@@ -1429,12 +1425,6 @@ msgstr "נעול"
|
|
1429
1425
|
msgid "Locked By"
|
1430
1426
|
msgstr ""
|
1431
1427
|
|
1432
|
-
#. module: dms
|
1433
|
-
#: model:ir.model.fields,field_description:dms.field_dms_directory__message_main_attachment_id
|
1434
|
-
#: model:ir.model.fields,field_description:dms.field_dms_file__message_main_attachment_id
|
1435
|
-
msgid "Main Attachment"
|
1436
|
-
msgstr "קובץ ראשי מצורף"
|
1437
|
-
|
1438
1428
|
#. module: dms
|
1439
1429
|
#: model:res.groups,name:dms.group_dms_manager
|
1440
1430
|
msgid "Manager"
|
@@ -1632,8 +1622,28 @@ msgid "Number of messages with delivery error"
|
|
1632
1622
|
msgstr "מספר הודעות עם שגיאת משלוח"
|
1633
1623
|
|
1634
1624
|
#. module: dms
|
1635
|
-
#: model:
|
1636
|
-
msgid "
|
1625
|
+
#: model:ir.model,name:dms.model_onboarding_onboarding
|
1626
|
+
msgid "Onboarding"
|
1627
|
+
msgstr ""
|
1628
|
+
|
1629
|
+
#. module: dms
|
1630
|
+
#: model:onboarding.onboarding.step,step_image_alt:dms.onboarding_step_create_directory
|
1631
|
+
msgid "Onboarding Directory"
|
1632
|
+
msgstr ""
|
1633
|
+
|
1634
|
+
#. module: dms
|
1635
|
+
#: model:onboarding.onboarding.step,step_image_alt:dms.onboarding_step_upload_file
|
1636
|
+
msgid "Onboarding File"
|
1637
|
+
msgstr ""
|
1638
|
+
|
1639
|
+
#. module: dms
|
1640
|
+
#: model:ir.model,name:dms.model_onboarding_onboarding_step
|
1641
|
+
msgid "Onboarding Step"
|
1642
|
+
msgstr ""
|
1643
|
+
|
1644
|
+
#. module: dms
|
1645
|
+
#: model:onboarding.onboarding.step,step_image_alt:dms.onboarding_step_document_storage
|
1646
|
+
msgid "Onboarding Storage"
|
1637
1647
|
msgstr ""
|
1638
1648
|
|
1639
1649
|
#. module: dms
|
@@ -1650,11 +1660,6 @@ msgstr ""
|
|
1650
1660
|
msgid "Only managers can execute this action."
|
1651
1661
|
msgstr "רק מנהלים יכולים לבצע פעולה זו."
|
1652
1662
|
|
1653
|
-
#. module: dms
|
1654
|
-
#: model_terms:ir.ui.view,arch_db:dms.view_dms_file_kanban
|
1655
|
-
msgid "Operations"
|
1656
|
-
msgstr "פעולות"
|
1657
|
-
|
1658
1663
|
#. module: dms
|
1659
1664
|
#: model:ir.model.fields,help:dms.field_dms_directory__alias_force_thread_id
|
1660
1665
|
msgid ""
|
@@ -1670,11 +1675,6 @@ msgstr ""
|
|
1670
1675
|
msgid "Organizing"
|
1671
1676
|
msgstr "מארגן"
|
1672
1677
|
|
1673
|
-
#. module: dms
|
1674
|
-
#: model:ir.model.fields,field_description:dms.field_dms_directory__alias_user_id
|
1675
|
-
msgid "Owner"
|
1676
|
-
msgstr "בעלים"
|
1677
|
-
|
1678
1678
|
#. module: dms
|
1679
1679
|
#: model:ir.model.fields,field_description:dms.field_dms_category__parent_id
|
1680
1680
|
msgid "Parent Category"
|
@@ -1767,7 +1767,7 @@ msgstr "כתובת גישה לפורטל"
|
|
1767
1767
|
|
1768
1768
|
#. module: dms
|
1769
1769
|
#. odoo-javascript
|
1770
|
-
#: code:addons/dms/static/src/js/
|
1770
|
+
#: code:addons/dms/static/src/js/fields/preview_binary/preview_record.xml:0
|
1771
1771
|
#, python-format
|
1772
1772
|
msgid "Preview"
|
1773
1773
|
msgstr ""
|
@@ -1850,6 +1850,11 @@ msgstr "ספרייה ראשית"
|
|
1850
1850
|
msgid "Root Directory"
|
1851
1851
|
msgstr ""
|
1852
1852
|
|
1853
|
+
#. module: dms
|
1854
|
+
#: model:onboarding.onboarding.step,done_text:dms.onboarding_step_create_directory
|
1855
|
+
msgid "Root Directory Created!"
|
1856
|
+
msgstr ""
|
1857
|
+
|
1853
1858
|
#. module: dms
|
1854
1859
|
#: model:dms.tag,name:dms.tag_04_demo
|
1855
1860
|
msgid "Sales"
|
@@ -1952,7 +1957,7 @@ msgstr ""
|
|
1952
1957
|
#: model:ir.model.fields,field_description:dms.field_abstract_dms_mixin__storage_id
|
1953
1958
|
#: model:ir.model.fields,field_description:dms.field_dms_directory__storage_id
|
1954
1959
|
#: model:ir.model.fields,field_description:dms.field_dms_file__storage_id
|
1955
|
-
#:
|
1960
|
+
#: model:onboarding.onboarding.step,title:dms.onboarding_step_document_storage
|
1956
1961
|
#: model_terms:ir.ui.view,arch_db:dms.search_dms_directory
|
1957
1962
|
#: model_terms:ir.ui.view,arch_db:dms.search_dms_file
|
1958
1963
|
#: model_terms:ir.ui.view,arch_db:dms.search_dms_file_migration
|
@@ -2049,12 +2054,6 @@ msgstr "השדה הפעיל מאפשר לך להסתיר את הקטגוריה
|
|
2049
2054
|
msgid "The active field allows you to hide the tag without removing it."
|
2050
2055
|
msgstr "השדה הפעיל מאפשר להסתיר את התגית מבלי להסיר אותה."
|
2051
2056
|
|
2052
|
-
#. module: dms
|
2053
|
-
#: model_terms:ir.ui.view,arch_db:dms.document_onboarding_directory_panel
|
2054
|
-
#: model_terms:ir.ui.view,arch_db:dms.document_onboarding_file_panel
|
2055
|
-
msgid "The configuration is done!"
|
2056
|
-
msgstr "התצורה נעשית!"
|
2057
|
-
|
2058
2057
|
#. module: dms
|
2059
2058
|
#. odoo-python
|
2060
2059
|
#: code:addons/dms/models/directory.py:0
|
@@ -2107,31 +2106,16 @@ msgstr ""
|
|
2107
2106
|
msgid "The name of the group must be unique!"
|
2108
2107
|
msgstr "שם הקבוצה חייב להיות ייחודי!"
|
2109
2108
|
|
2110
|
-
#. module: dms
|
2111
|
-
#: model:ir.model.fields,help:dms.field_dms_directory__alias_user_id
|
2112
|
-
msgid ""
|
2113
|
-
"The owner of records created upon receiving emails on this alias. If this "
|
2114
|
-
"field is not set the system will attempt to find the right owner based on "
|
2115
|
-
"the sender (From) address, or will use the Administrator account if no "
|
2116
|
-
"system user is found for that address."
|
2117
|
-
msgstr ""
|
2118
|
-
"הבעלים של רשומות שנוצרו עם קבלת דוא\"ל בכינוי זה. אם שדה זה לא מוגדר, המערכת "
|
2119
|
-
"תנסה למצוא את הבעלים הנכון על סמך כתובת השולח (מאת), או שתשתמש בחשבון מנהל "
|
2120
|
-
"המערכת אם לא נמצא משתמש מערכת עבור אותה כתובת."
|
2121
|
-
|
2122
2109
|
#. module: dms
|
2123
2110
|
#: model:ir.model.fields,help:dms.field_abstract_dms_mixin__storage_id_save_type
|
2124
2111
|
#: model:ir.model.fields,help:dms.field_dms_directory__storage_id_save_type
|
2125
2112
|
#: model:ir.model.fields,help:dms.field_dms_file__storage_id_save_type
|
2126
2113
|
#: model:ir.model.fields,help:dms.field_dms_storage__save_type
|
2127
2114
|
msgid ""
|
2128
|
-
"The save type is used to determine how a file is saved by the
|
2129
|
-
"
|
2130
|
-
"
|
2115
|
+
"The save type is used to determine how a file is saved by the system. If you "
|
2116
|
+
"change this setting, you can migrate existing files manually by triggering "
|
2117
|
+
"the action."
|
2131
2118
|
msgstr ""
|
2132
|
-
"סוג השמירה משמש לקביעת אופן שמירת הקובץ על ידי ה-\n"
|
2133
|
-
" מערכת. אם תשנה הגדרה זו, תוכל להעביר קבצים קיימים\n"
|
2134
|
-
" באופן ידני על ידי הפעלת הפעולה."
|
2135
2119
|
|
2136
2120
|
#. module: dms
|
2137
2121
|
#. odoo-python
|
@@ -2201,16 +2185,17 @@ msgid "Upload"
|
|
2201
2185
|
msgstr ""
|
2202
2186
|
|
2203
2187
|
#. module: dms
|
2204
|
-
#:
|
2188
|
+
#: model:onboarding.onboarding.step,button_text:dms.onboarding_step_upload_file
|
2205
2189
|
msgid "Upload File"
|
2206
2190
|
msgstr "טען קובץ"
|
2207
2191
|
|
2208
2192
|
#. module: dms
|
2209
|
-
#:
|
2193
|
+
#: model:onboarding.onboarding.step,description:dms.onboarding_step_upload_file
|
2210
2194
|
msgid "Upload your first File."
|
2211
2195
|
msgstr "טען את הקובץ הראשון שלך."
|
2212
2196
|
|
2213
2197
|
#. module: dms
|
2198
|
+
#: model:dms.access.group,name:dms.access_group_03_demo
|
2214
2199
|
#: model:res.groups,name:dms.group_dms_user
|
2215
2200
|
msgid "User"
|
2216
2201
|
msgstr "משתמש"
|
@@ -2225,13 +2210,6 @@ msgstr "משתמשים"
|
|
2225
2210
|
msgid "Vendor Bill"
|
2226
2211
|
msgstr ""
|
2227
2212
|
|
2228
|
-
#. module: dms
|
2229
|
-
#. odoo-javascript
|
2230
|
-
#: code:addons/dms/static/src/xml/views.xml:0
|
2231
|
-
#, python-format
|
2232
|
-
msgid "Viewer"
|
2233
|
-
msgstr "צופה"
|
2234
|
-
|
2235
2213
|
#. module: dms
|
2236
2214
|
#: model_terms:ir.ui.view,arch_db:dms.view_dms_directory_kanban
|
2237
2215
|
msgid "Views"
|
@@ -2270,17 +2248,10 @@ msgstr "גישה לכתיבה"
|
|
2270
2248
|
#. module: dms
|
2271
2249
|
#. odoo-javascript
|
2272
2250
|
#: code:addons/dms/static/src/js/views/dms_file_upload.esm.js:0
|
2273
|
-
#: code:addons/dms/static/src/js/views/many_drop_target.js:0
|
2274
2251
|
#, python-format
|
2275
2252
|
msgid "You must select a directory first"
|
2276
2253
|
msgstr "תחילה עליך לבחור ספריה"
|
2277
2254
|
|
2278
|
-
#. module: dms
|
2279
|
-
#: model_terms:ir.ui.view,arch_db:dms.document_onboarding_directory_panel
|
2280
|
-
#: model_terms:ir.ui.view,arch_db:dms.document_onboarding_file_panel
|
2281
|
-
msgid "action_close_documents_onboarding"
|
2282
|
-
msgstr ""
|
2283
|
-
|
2284
2255
|
#. module: dms
|
2285
2256
|
#: model_terms:ir.ui.view,arch_db:dms.portal_my_dms
|
2286
2257
|
msgid "element(s)"
|
@@ -2296,21 +2267,77 @@ msgstr ""
|
|
2296
2267
|
msgid "mail.catchall.domain"
|
2297
2268
|
msgstr ""
|
2298
2269
|
|
2299
|
-
|
2300
|
-
|
2301
|
-
|
2302
|
-
|
2270
|
+
#~ msgid ""
|
2271
|
+
#~ "<span class=\"o_form_label\">\n"
|
2272
|
+
#~ " Storages\n"
|
2273
|
+
#~ " </span>"
|
2274
|
+
#~ msgstr ""
|
2275
|
+
#~ "<span class=\"o_form_label\">\n"
|
2276
|
+
#~ " מאגרים\n"
|
2277
|
+
#~ " </span>"
|
2303
2278
|
|
2304
|
-
|
2305
|
-
|
2306
|
-
msgid "o_onboarding_orange"
|
2307
|
-
msgstr ""
|
2279
|
+
#~ msgid "<span class=\"o_form_label\">File Size</span>"
|
2280
|
+
#~ msgstr "<span class=\"o_form_label\">גודל הקובץ </span>"
|
2308
2281
|
|
2309
|
-
|
2310
|
-
|
2311
|
-
|
2312
|
-
|
2313
|
-
|
2282
|
+
#, python-format
|
2283
|
+
#~ msgid "A file with the same name already exists."
|
2284
|
+
#~ msgstr "כבר קיים קובץ עם אותו שם."
|
2285
|
+
|
2286
|
+
#~ msgid "Alias domain"
|
2287
|
+
#~ msgstr "כינוי דומיין"
|
2288
|
+
|
2289
|
+
#~ msgid ""
|
2290
|
+
#~ "Define the maximum upload size of a\n"
|
2291
|
+
#~ " file in MB"
|
2292
|
+
#~ msgstr ""
|
2293
|
+
#~ "הגדר את גודל ההעלאה המקסימלי של\n"
|
2294
|
+
#~ " קובץ ב- MB"
|
2295
|
+
|
2296
|
+
#~ msgid "Dropdown menu"
|
2297
|
+
#~ msgstr "תפריט נפתח"
|
2298
|
+
|
2299
|
+
#~ msgid "Last Modified on"
|
2300
|
+
#~ msgstr "שינוי אחרון ב"
|
2301
|
+
|
2302
|
+
#, python-format
|
2303
|
+
#~ msgid "Loading"
|
2304
|
+
#~ msgstr "טוען"
|
2305
|
+
|
2306
|
+
#~ msgid "Main Attachment"
|
2307
|
+
#~ msgstr "קובץ ראשי מצורף"
|
2308
|
+
|
2309
|
+
#~ msgid "Operations"
|
2310
|
+
#~ msgstr "פעולות"
|
2311
|
+
|
2312
|
+
#~ msgid "Owner"
|
2313
|
+
#~ msgstr "בעלים"
|
2314
|
+
|
2315
|
+
#~ msgid "The configuration is done!"
|
2316
|
+
#~ msgstr "התצורה נעשית!"
|
2317
|
+
|
2318
|
+
#~ msgid ""
|
2319
|
+
#~ "The owner of records created upon receiving emails on this alias. If this "
|
2320
|
+
#~ "field is not set the system will attempt to find the right owner based on "
|
2321
|
+
#~ "the sender (From) address, or will use the Administrator account if no "
|
2322
|
+
#~ "system user is found for that address."
|
2323
|
+
#~ msgstr ""
|
2324
|
+
#~ "הבעלים של רשומות שנוצרו עם קבלת דוא\"ל בכינוי זה. אם שדה זה לא מוגדר, "
|
2325
|
+
#~ "המערכת תנסה למצוא את הבעלים הנכון על סמך כתובת השולח (מאת), או שתשתמש "
|
2326
|
+
#~ "בחשבון מנהל המערכת אם לא נמצא משתמש מערכת עבור אותה כתובת."
|
2327
|
+
|
2328
|
+
#~ msgid ""
|
2329
|
+
#~ "The save type is used to determine how a file is saved by the\n"
|
2330
|
+
#~ " system. If you change this setting, you can migrate existing "
|
2331
|
+
#~ "files\n"
|
2332
|
+
#~ " manually by triggering the action."
|
2333
|
+
#~ msgstr ""
|
2334
|
+
#~ "סוג השמירה משמש לקביעת אופן שמירת הקובץ על ידי ה-\n"
|
2335
|
+
#~ " מערכת. אם תשנה הגדרה זו, תוכל להעביר קבצים קיימים\n"
|
2336
|
+
#~ " באופן ידני על ידי הפעלת הפעולה."
|
2337
|
+
|
2338
|
+
#, python-format
|
2339
|
+
#~ msgid "Viewer"
|
2340
|
+
#~ msgstr "צופה"
|
2314
2341
|
|
2315
2342
|
#, python-format
|
2316
2343
|
#~ msgid "Error has not been raised"
|