wbcrm 1.56.8__py2.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.
Files changed (182) hide show
  1. wbcrm/__init__.py +1 -0
  2. wbcrm/admin/__init__.py +5 -0
  3. wbcrm/admin/accounts.py +60 -0
  4. wbcrm/admin/activities.py +104 -0
  5. wbcrm/admin/events.py +43 -0
  6. wbcrm/admin/groups.py +8 -0
  7. wbcrm/admin/products.py +9 -0
  8. wbcrm/apps.py +5 -0
  9. wbcrm/configurations/__init__.py +1 -0
  10. wbcrm/configurations/base.py +16 -0
  11. wbcrm/dynamic_preferences_registry.py +38 -0
  12. wbcrm/factories/__init__.py +14 -0
  13. wbcrm/factories/accounts.py +57 -0
  14. wbcrm/factories/activities.py +124 -0
  15. wbcrm/factories/groups.py +24 -0
  16. wbcrm/factories/products.py +11 -0
  17. wbcrm/filters/__init__.py +10 -0
  18. wbcrm/filters/accounts.py +80 -0
  19. wbcrm/filters/activities.py +204 -0
  20. wbcrm/filters/groups.py +21 -0
  21. wbcrm/filters/products.py +38 -0
  22. wbcrm/filters/signals.py +95 -0
  23. wbcrm/fixtures/wbcrm.json +1215 -0
  24. wbcrm/kpi_handlers/activities.py +171 -0
  25. wbcrm/locale/de/LC_MESSAGES/django.mo +0 -0
  26. wbcrm/locale/de/LC_MESSAGES/django.po +1557 -0
  27. wbcrm/locale/de/LC_MESSAGES/django.po.translated +1630 -0
  28. wbcrm/locale/en/LC_MESSAGES/django.mo +0 -0
  29. wbcrm/locale/en/LC_MESSAGES/django.po +1466 -0
  30. wbcrm/locale/fr/LC_MESSAGES/django.mo +0 -0
  31. wbcrm/locale/fr/LC_MESSAGES/django.po +1467 -0
  32. wbcrm/migrations/0001_initial_squashed_squashed_0032_productcompanyrelationship_alter_product_prospects_and_more.py +3948 -0
  33. wbcrm/migrations/0002_alter_activity_repeat_choice.py +32 -0
  34. wbcrm/migrations/0003_remove_activity_external_id_and_more.py +63 -0
  35. wbcrm/migrations/0004_alter_activity_status.py +28 -0
  36. wbcrm/migrations/0005_account_accountrole_accountroletype_and_more.py +182 -0
  37. wbcrm/migrations/0006_alter_activity_location.py +17 -0
  38. wbcrm/migrations/0007_alter_account_status.py +23 -0
  39. wbcrm/migrations/0008_alter_activity_options.py +16 -0
  40. wbcrm/migrations/0009_alter_account_is_public.py +19 -0
  41. wbcrm/migrations/0010_alter_account_reference_id.py +17 -0
  42. wbcrm/migrations/0011_activity_summary.py +22 -0
  43. wbcrm/migrations/0012_alter_activity_summary.py +17 -0
  44. wbcrm/migrations/0013_account_action_plan_account_relationship_status_and_more.py +34 -0
  45. wbcrm/migrations/0014_alter_account_relationship_status.py +24 -0
  46. wbcrm/migrations/0015_alter_activity_type.py +23 -0
  47. wbcrm/migrations/0016_auto_20241205_1015.py +106 -0
  48. wbcrm/migrations/0017_event.py +40 -0
  49. wbcrm/migrations/0018_activity_search_vector.py +24 -0
  50. wbcrm/migrations/__init__.py +0 -0
  51. wbcrm/models/__init__.py +5 -0
  52. wbcrm/models/accounts.py +648 -0
  53. wbcrm/models/activities.py +1419 -0
  54. wbcrm/models/events.py +15 -0
  55. wbcrm/models/groups.py +119 -0
  56. wbcrm/models/llm/activity_summaries.py +41 -0
  57. wbcrm/models/llm/analyze_relationship.py +50 -0
  58. wbcrm/models/products.py +86 -0
  59. wbcrm/models/recurrence.py +280 -0
  60. wbcrm/preferences.py +13 -0
  61. wbcrm/report/activity_report.py +110 -0
  62. wbcrm/serializers/__init__.py +23 -0
  63. wbcrm/serializers/accounts.py +141 -0
  64. wbcrm/serializers/activities.py +525 -0
  65. wbcrm/serializers/groups.py +30 -0
  66. wbcrm/serializers/products.py +58 -0
  67. wbcrm/serializers/recurrence.py +91 -0
  68. wbcrm/serializers/signals.py +71 -0
  69. wbcrm/static/wbcrm/markdown/documentation/activity.md +86 -0
  70. wbcrm/static/wbcrm/markdown/documentation/activitytype.md +20 -0
  71. wbcrm/static/wbcrm/markdown/documentation/group.md +2 -0
  72. wbcrm/static/wbcrm/markdown/documentation/product.md +11 -0
  73. wbcrm/synchronization/__init__.py +0 -0
  74. wbcrm/synchronization/activity/__init__.py +0 -0
  75. wbcrm/synchronization/activity/admin.py +73 -0
  76. wbcrm/synchronization/activity/backend.py +214 -0
  77. wbcrm/synchronization/activity/backends/__init__.py +0 -0
  78. wbcrm/synchronization/activity/backends/google/__init__.py +2 -0
  79. wbcrm/synchronization/activity/backends/google/google_calendar_backend.py +406 -0
  80. wbcrm/synchronization/activity/backends/google/request_utils/__init__.py +16 -0
  81. wbcrm/synchronization/activity/backends/google/request_utils/external_to_internal/create.py +75 -0
  82. wbcrm/synchronization/activity/backends/google/request_utils/external_to_internal/delete.py +78 -0
  83. wbcrm/synchronization/activity/backends/google/request_utils/external_to_internal/update.py +155 -0
  84. wbcrm/synchronization/activity/backends/google/request_utils/internal_to_external/update.py +181 -0
  85. wbcrm/synchronization/activity/backends/google/tasks.py +21 -0
  86. wbcrm/synchronization/activity/backends/google/tests/__init__.py +0 -0
  87. wbcrm/synchronization/activity/backends/google/tests/conftest.py +1 -0
  88. wbcrm/synchronization/activity/backends/google/tests/test_data.py +81 -0
  89. wbcrm/synchronization/activity/backends/google/tests/test_google_backend.py +319 -0
  90. wbcrm/synchronization/activity/backends/google/tests/test_utils.py +274 -0
  91. wbcrm/synchronization/activity/backends/google/typing_informations.py +139 -0
  92. wbcrm/synchronization/activity/backends/google/utils.py +217 -0
  93. wbcrm/synchronization/activity/backends/outlook/__init__.py +0 -0
  94. wbcrm/synchronization/activity/backends/outlook/backend.py +593 -0
  95. wbcrm/synchronization/activity/backends/outlook/msgraph.py +436 -0
  96. wbcrm/synchronization/activity/backends/outlook/parser.py +432 -0
  97. wbcrm/synchronization/activity/backends/outlook/tests/__init__.py +0 -0
  98. wbcrm/synchronization/activity/backends/outlook/tests/conftest.py +1 -0
  99. wbcrm/synchronization/activity/backends/outlook/tests/fixtures.py +606 -0
  100. wbcrm/synchronization/activity/backends/outlook/tests/test_admin.py +118 -0
  101. wbcrm/synchronization/activity/backends/outlook/tests/test_backend.py +274 -0
  102. wbcrm/synchronization/activity/backends/outlook/tests/test_controller.py +249 -0
  103. wbcrm/synchronization/activity/backends/outlook/tests/test_parser.py +174 -0
  104. wbcrm/synchronization/activity/controller.py +627 -0
  105. wbcrm/synchronization/activity/dynamic_preferences_registry.py +119 -0
  106. wbcrm/synchronization/activity/preferences.py +27 -0
  107. wbcrm/synchronization/activity/shortcuts.py +16 -0
  108. wbcrm/synchronization/activity/tasks.py +21 -0
  109. wbcrm/synchronization/activity/urls.py +7 -0
  110. wbcrm/synchronization/activity/utils.py +46 -0
  111. wbcrm/synchronization/activity/views.py +41 -0
  112. wbcrm/synchronization/admin.py +1 -0
  113. wbcrm/synchronization/apps.py +14 -0
  114. wbcrm/synchronization/dynamic_preferences_registry.py +1 -0
  115. wbcrm/synchronization/management.py +36 -0
  116. wbcrm/synchronization/tasks.py +1 -0
  117. wbcrm/synchronization/urls.py +5 -0
  118. wbcrm/tasks.py +264 -0
  119. wbcrm/templates/email/activity.html +98 -0
  120. wbcrm/templates/email/activity_report.html +6 -0
  121. wbcrm/templates/email/daily_summary.html +72 -0
  122. wbcrm/templates/email/global_daily_summary.html +85 -0
  123. wbcrm/tests/__init__.py +0 -0
  124. wbcrm/tests/accounts/__init__.py +0 -0
  125. wbcrm/tests/accounts/test_models.py +393 -0
  126. wbcrm/tests/accounts/test_viewsets.py +88 -0
  127. wbcrm/tests/conftest.py +76 -0
  128. wbcrm/tests/disable_signals.py +62 -0
  129. wbcrm/tests/e2e/__init__.py +1 -0
  130. wbcrm/tests/e2e/e2e_wbcrm_utility.py +83 -0
  131. wbcrm/tests/e2e/test_e2e.py +370 -0
  132. wbcrm/tests/test_assignee_methods.py +40 -0
  133. wbcrm/tests/test_chartviewsets.py +112 -0
  134. wbcrm/tests/test_dto.py +64 -0
  135. wbcrm/tests/test_filters.py +52 -0
  136. wbcrm/tests/test_models.py +217 -0
  137. wbcrm/tests/test_recurrence.py +292 -0
  138. wbcrm/tests/test_report.py +21 -0
  139. wbcrm/tests/test_serializers.py +171 -0
  140. wbcrm/tests/test_tasks.py +95 -0
  141. wbcrm/tests/test_viewsets.py +967 -0
  142. wbcrm/tests/tests.py +121 -0
  143. wbcrm/typings.py +109 -0
  144. wbcrm/urls.py +67 -0
  145. wbcrm/viewsets/__init__.py +22 -0
  146. wbcrm/viewsets/accounts.py +122 -0
  147. wbcrm/viewsets/activities.py +341 -0
  148. wbcrm/viewsets/buttons/__init__.py +7 -0
  149. wbcrm/viewsets/buttons/accounts.py +27 -0
  150. wbcrm/viewsets/buttons/activities.py +89 -0
  151. wbcrm/viewsets/buttons/signals.py +17 -0
  152. wbcrm/viewsets/display/__init__.py +12 -0
  153. wbcrm/viewsets/display/accounts.py +110 -0
  154. wbcrm/viewsets/display/activities.py +444 -0
  155. wbcrm/viewsets/display/groups.py +22 -0
  156. wbcrm/viewsets/display/products.py +105 -0
  157. wbcrm/viewsets/endpoints/__init__.py +8 -0
  158. wbcrm/viewsets/endpoints/accounts.py +25 -0
  159. wbcrm/viewsets/endpoints/activities.py +30 -0
  160. wbcrm/viewsets/endpoints/groups.py +7 -0
  161. wbcrm/viewsets/endpoints/products.py +9 -0
  162. wbcrm/viewsets/groups.py +38 -0
  163. wbcrm/viewsets/menu/__init__.py +8 -0
  164. wbcrm/viewsets/menu/accounts.py +18 -0
  165. wbcrm/viewsets/menu/activities.py +49 -0
  166. wbcrm/viewsets/menu/groups.py +16 -0
  167. wbcrm/viewsets/menu/products.py +20 -0
  168. wbcrm/viewsets/mixins.py +35 -0
  169. wbcrm/viewsets/previews/__init__.py +1 -0
  170. wbcrm/viewsets/previews/activities.py +10 -0
  171. wbcrm/viewsets/products.py +57 -0
  172. wbcrm/viewsets/recurrence.py +27 -0
  173. wbcrm/viewsets/titles/__init__.py +13 -0
  174. wbcrm/viewsets/titles/accounts.py +23 -0
  175. wbcrm/viewsets/titles/activities.py +61 -0
  176. wbcrm/viewsets/titles/products.py +13 -0
  177. wbcrm/viewsets/titles/utils.py +46 -0
  178. wbcrm/workflows/__init__.py +1 -0
  179. wbcrm/workflows/assignee_methods.py +25 -0
  180. wbcrm-1.56.8.dist-info/METADATA +11 -0
  181. wbcrm-1.56.8.dist-info/RECORD +182 -0
  182. wbcrm-1.56.8.dist-info/WHEEL +5 -0
@@ -0,0 +1,1466 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: PACKAGE VERSION\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2025-05-30 13:27+0200\n"
11
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "Language: \n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+
19
+ #: admin/activities.py:29 admin/activities.py:45
20
+ msgid "Main information"
21
+ msgstr ""
22
+
23
+ #: admin/activities.py:46
24
+ msgid "Meta"
25
+ msgstr ""
26
+
27
+ #: admin/activities.py:47
28
+ msgid "Temporal Information"
29
+ msgstr ""
30
+
31
+ #: admin/activities.py:48
32
+ msgid "Geographical Information"
33
+ msgstr ""
34
+
35
+ #: admin/activities.py:49
36
+ msgid "Linked Entries"
37
+ msgstr ""
38
+
39
+ #: admin/activities.py:50
40
+ msgid "Linked Activities"
41
+ msgstr ""
42
+
43
+ #: admin/activities.py:51
44
+ msgid "LLM"
45
+ msgstr ""
46
+
47
+ #: admin/activities.py:53 viewsets/display/activities.py:141
48
+ #: viewsets/display/activities.py:225 viewsets/display/activities.py:328
49
+ msgid "Recurrence"
50
+ msgstr ""
51
+
52
+ #: dynamic_preferences_registry.py:15
53
+ msgid "Check for mandatory participants"
54
+ msgstr ""
55
+
56
+ #: dynamic_preferences_registry.py:17
57
+ msgid ""
58
+ "Determines whether or not companies must be entered as participants in the "
59
+ "\"Companies\" field for activities."
60
+ msgstr ""
61
+
62
+ #: dynamic_preferences_registry.py:28
63
+ msgid "The default Maximum allowed days"
64
+ msgstr ""
65
+
66
+ #: filters/activities.py:31
67
+ msgid "Types"
68
+ msgstr ""
69
+
70
+ #: filters/activities.py:40 serializers/activities.py:233
71
+ msgid "Visibility"
72
+ msgstr ""
73
+
74
+ #: filters/activities.py:44 report/activity_report.py:78
75
+ #: serializers/activities.py:259 templates/email/activity.html:80
76
+ #: viewsets/display/activities.py:72 viewsets/display/activities.py:76
77
+ #: viewsets/display/activities.py:375
78
+ msgid "Participants"
79
+ msgstr ""
80
+
81
+ #: filters/activities.py:52 serializers/activities.py:253
82
+ #: viewsets/display/activities.py:376
83
+ msgid "Companies"
84
+ msgstr ""
85
+
86
+ #: filters/activities.py:60 models/activities.py:433 models/groups.py:20
87
+ #: viewsets/display/activities.py:377 viewsets/menu/groups.py:6
88
+ msgid "Groups"
89
+ msgstr ""
90
+
91
+ #: filters/activities.py:70
92
+ msgid "Clients of"
93
+ msgstr ""
94
+
95
+ #: filters/activities.py:80
96
+ msgid "Latest Reviewers"
97
+ msgstr ""
98
+
99
+ #: filters/activities.py:88 models/activities.py:355
100
+ msgid "Importance"
101
+ msgstr ""
102
+
103
+ #: filters/activities.py:92 models/activities.py:379
104
+ msgid "Created"
105
+ msgstr ""
106
+
107
+ #: filters/activities.py:95 models/activities.py:399
108
+ #: viewsets/display/activities.py:378
109
+ msgid "Edited"
110
+ msgstr ""
111
+
112
+ #: filters/activities.py:98
113
+ msgid "Only Recent"
114
+ msgstr ""
115
+
116
+ #: filters/activities.py:101 viewsets/titles/utils.py:13
117
+ msgid "Customer Status"
118
+ msgstr ""
119
+
120
+ #: filters/activities.py:172 models/activities.py:251
121
+ #: serializers/activities.py:481
122
+ msgid "Status"
123
+ msgstr ""
124
+
125
+ #: filters/activities.py:183
126
+ msgid "Multipliers"
127
+ msgstr ""
128
+
129
+ #: filters/activities.py:197
130
+ msgid "Is occupied by different activity"
131
+ msgstr ""
132
+
133
+ #: filters/groups.py:10 models/groups.py:16 viewsets/display/groups.py:17
134
+ msgid "Members"
135
+ msgstr ""
136
+
137
+ #: filters/products.py:10 models/products.py:52 viewsets/display/products.py:29
138
+ msgid "Prospects"
139
+ msgstr ""
140
+
141
+ #: filters/products.py:26 models/products.py:43 viewsets/display/products.py:28
142
+ #: viewsets/display/products.py:59
143
+ msgid "Is Competitor"
144
+ msgstr ""
145
+
146
+ #: filters/signals.py:74
147
+ msgid "No Activity"
148
+ msgstr ""
149
+
150
+ #: filters/signals.py:78
151
+ msgid "Last Month"
152
+ msgstr ""
153
+
154
+ #: filters/signals.py:79
155
+ msgid "Last 3 Months"
156
+ msgstr ""
157
+
158
+ #: filters/signals.py:80
159
+ msgid "Last 6 Months"
160
+ msgstr ""
161
+
162
+ #: filters/signals.py:81
163
+ msgid "Last 12 Months"
164
+ msgstr ""
165
+
166
+ #: filters/signals.py:82
167
+ msgid "All Time"
168
+ msgstr ""
169
+
170
+ #: kpi_handlers/activities.py:18 models/activities.py:126
171
+ #: viewsets/titles/activities.py:13
172
+ msgid "Activity Type"
173
+ msgstr ""
174
+
175
+ #: kpi_handlers/activities.py:24
176
+ msgid "Only Internal"
177
+ msgstr ""
178
+
179
+ #: kpi_handlers/activities.py:24
180
+ msgid "Only External"
181
+ msgstr ""
182
+
183
+ #: kpi_handlers/activities.py:24
184
+ msgid "All"
185
+ msgstr ""
186
+
187
+ #: kpi_handlers/activities.py:28
188
+ msgid "Participants of Activity"
189
+ msgstr ""
190
+
191
+ #: kpi_handlers/activities.py:29
192
+ msgid "Activities considered are related to the participants"
193
+ msgstr ""
194
+
195
+ #: kpi_handlers/activities.py:32
196
+ msgid "Creator of activity"
197
+ msgstr ""
198
+
199
+ #: kpi_handlers/activities.py:32
200
+ msgid "Activities considered are related to the creator"
201
+ msgstr ""
202
+
203
+ #: kpi_handlers/activities.py:36
204
+ msgid "Person Assigned"
205
+ msgstr ""
206
+
207
+ #: kpi_handlers/activities.py:37
208
+ msgid "Activities considered are related to the persons assigned"
209
+ msgstr ""
210
+
211
+ #: kpi_handlers/activities.py:95
212
+ msgid "Number of Activities"
213
+ msgstr ""
214
+
215
+ #: kpi_handlers/activities.py:114
216
+ #, python-brace-format
217
+ msgid "Activity Type: {types}"
218
+ msgstr ""
219
+
220
+ #: kpi_handlers/activities.py:115
221
+ #, python-brace-format
222
+ msgid "Activity Area: {area}"
223
+ msgstr ""
224
+
225
+ #: kpi_handlers/activities.py:116
226
+ #, python-brace-format
227
+ msgid "Person Participates: {participating}"
228
+ msgstr ""
229
+
230
+ #: kpi_handlers/activities.py:117
231
+ #, python-brace-format
232
+ msgid "Person Created: {created}"
233
+ msgstr ""
234
+
235
+ #: kpi_handlers/activities.py:118
236
+ #, python-brace-format
237
+ msgid "Person Assigned: {assigned}"
238
+ msgstr ""
239
+
240
+ #: models/accounts.py:93
241
+ msgid "Pending"
242
+ msgstr ""
243
+
244
+ #: models/accounts.py:94
245
+ msgid "Open"
246
+ msgstr ""
247
+
248
+ #: models/accounts.py:95
249
+ msgid "Close"
250
+ msgstr ""
251
+
252
+ #: models/accounts.py:99
253
+ msgid "Relationship Status"
254
+ msgstr ""
255
+
256
+ #: models/accounts.py:100
257
+ msgid ""
258
+ "The Relationship Status from 1 to 5. 1 being the cold and 5 being the hot."
259
+ msgstr ""
260
+
261
+ #: models/accounts.py:116
262
+ msgid "Parent Account"
263
+ msgstr ""
264
+
265
+ #: models/accounts.py:132
266
+ msgid "Owner"
267
+ msgstr ""
268
+
269
+ #: models/accounts.py:341
270
+ msgid "Account"
271
+ msgstr ""
272
+
273
+ #: models/accounts.py:342
274
+ msgid "Accounts"
275
+ msgstr ""
276
+
277
+ #: models/accounts.py:510
278
+ msgid "authorized Hidden Users"
279
+ msgstr ""
280
+
281
+ #: models/accounts.py:511
282
+ msgid "List of users that are allowed to see this hidden account role"
283
+ msgstr ""
284
+
285
+ #: models/activities.py:74 models/groups.py:15 models/products.py:33
286
+ #: report/activity_report.py:72 serializers/activities.py:274
287
+ #: viewsets/display/activities.py:45 viewsets/display/activities.py:372
288
+ #: viewsets/display/products.py:27
289
+ msgid "Title"
290
+ msgstr ""
291
+
292
+ #: models/activities.py:90
293
+ msgid "Activity Heat Multiplier"
294
+ msgstr ""
295
+
296
+ #: models/activities.py:97
297
+ msgid ""
298
+ "Used for the activity heat calculation. Multipliers range from low (i.e. e-"
299
+ "mail) to medium (i.e. call) and high (i.e. meeting)."
300
+ msgstr ""
301
+
302
+ #: models/activities.py:127 viewsets/menu/activities.py:11
303
+ #: viewsets/titles/activities.py:7
304
+ msgid "Activity Types"
305
+ msgstr ""
306
+
307
+ #: models/activities.py:160
308
+ msgid "LLM Summary"
309
+ msgstr ""
310
+
311
+ #: models/activities.py:164
312
+ msgid "Online Meeting"
313
+ msgstr ""
314
+
315
+ #: models/activities.py:165
316
+ msgid "Check this if it happens online"
317
+ msgstr ""
318
+
319
+ #: models/activities.py:169 models/activities.py:1048
320
+ msgid "Cancelled"
321
+ msgstr ""
322
+
323
+ #: models/activities.py:170
324
+ msgid "Planned"
325
+ msgstr ""
326
+
327
+ #: models/activities.py:171
328
+ msgid "Finished"
329
+ msgstr ""
330
+
331
+ #: models/activities.py:172
332
+ msgid "Reviewed"
333
+ msgstr ""
334
+
335
+ #: models/activities.py:185
336
+ msgid "Low"
337
+ msgstr ""
338
+
339
+ #: models/activities.py:186
340
+ msgid "Medium"
341
+ msgstr ""
342
+
343
+ #: models/activities.py:187
344
+ msgid "High"
345
+ msgstr ""
346
+
347
+ #: models/activities.py:190 models/recurrence.py:21
348
+ msgid "Never"
349
+ msgstr ""
350
+
351
+ #: models/activities.py:191
352
+ msgid "At time of event"
353
+ msgstr ""
354
+
355
+ #: models/activities.py:192
356
+ msgid "5 minutes before"
357
+ msgstr ""
358
+
359
+ #: models/activities.py:193
360
+ msgid "15 minutes before"
361
+ msgstr ""
362
+
363
+ #: models/activities.py:194
364
+ msgid "30 minutes before"
365
+ msgstr ""
366
+
367
+ #: models/activities.py:195
368
+ msgid "1 hour before"
369
+ msgstr ""
370
+
371
+ #: models/activities.py:196
372
+ msgid "2 hour before"
373
+ msgstr ""
374
+
375
+ #: models/activities.py:197
376
+ msgid "12 hour before"
377
+ msgstr ""
378
+
379
+ #: models/activities.py:198
380
+ msgid "1 week before"
381
+ msgstr ""
382
+
383
+ #: models/activities.py:217 models/activities.py:1016 models/activities.py:1058
384
+ #: serializers/activities.py:478
385
+ msgid "Activity"
386
+ msgstr ""
387
+
388
+ #: models/activities.py:218 viewsets/buttons/signals.py:17
389
+ #: viewsets/menu/activities.py:29 viewsets/titles/activities.py:46
390
+ msgid "Activities"
391
+ msgstr ""
392
+
393
+ #: models/activities.py:222
394
+ msgid "Activity Participant"
395
+ msgstr ""
396
+
397
+ #: models/activities.py:223
398
+ msgid "User notification when addeded to an activity."
399
+ msgstr ""
400
+
401
+ #: models/activities.py:227
402
+ msgid "Activity Reminder"
403
+ msgstr ""
404
+
405
+ #: models/activities.py:228
406
+ msgid "Sends a reminder that an activity is starting soon."
407
+ msgstr ""
408
+
409
+ #: models/activities.py:232
410
+ msgid "Finished Activity"
411
+ msgstr ""
412
+
413
+ #: models/activities.py:233
414
+ msgid "Notifies a user of a finished activity that can be reviewed."
415
+ msgstr ""
416
+
417
+ #: models/activities.py:237
418
+ msgid "Daily Summary"
419
+ msgstr ""
420
+
421
+ #: models/activities.py:238
422
+ msgid "Sends out a daily summary of a user's upcoming day."
423
+ msgstr ""
424
+
425
+ #: models/activities.py:246
426
+ msgid "Activity Sync Irregularities"
427
+ msgstr ""
428
+
429
+ #: models/activities.py:247
430
+ msgid "Admin notification to inform about irregularities of the activity sync."
431
+ msgstr ""
432
+
433
+ #: models/activities.py:264 models/activities.py:265
434
+ msgid "Finish"
435
+ msgstr ""
436
+
437
+ #: models/activities.py:266
438
+ msgid "Are you sure you want to finish this activity?"
439
+ msgstr ""
440
+
441
+ #: models/activities.py:277
442
+ msgid "In this status this has to be provided."
443
+ msgstr ""
444
+
445
+ #: models/activities.py:292
446
+ msgctxt "Transition button label for Reviews"
447
+ msgid "Review"
448
+ msgstr ""
449
+
450
+ #: models/activities.py:293
451
+ msgctxt "Transition action label for Reviews"
452
+ msgid "Review"
453
+ msgstr ""
454
+
455
+ #: models/activities.py:305
456
+ msgid "When reviewing an activity a result has to be provided!"
457
+ msgstr ""
458
+
459
+ #: models/activities.py:313
460
+ #, python-brace-format
461
+ msgid "You need to enter an employer for: {persons}"
462
+ msgstr ""
463
+
464
+ #: models/activities.py:321
465
+ #, python-brace-format
466
+ msgid "You need to enter an employee for: {companies}"
467
+ msgstr ""
468
+
469
+ #: models/activities.py:337 models/activities.py:338
470
+ msgid "Cancel"
471
+ msgstr ""
472
+
473
+ #: models/activities.py:339
474
+ msgid "Are you sure you want to cancel this activity?"
475
+ msgstr ""
476
+
477
+ #: models/activities.py:346 templates/email/activity.html:66
478
+ #: viewsets/display/activities.py:380
479
+ msgid "Description"
480
+ msgstr ""
481
+
482
+ #: models/activities.py:347
483
+ msgid "Review"
484
+ msgstr ""
485
+
486
+ #: models/activities.py:352 viewsets/display/activities.py:371
487
+ msgid "Type"
488
+ msgstr ""
489
+
490
+ #: models/activities.py:358 report/activity_report.py:73
491
+ msgid "Start"
492
+ msgstr ""
493
+
494
+ #: models/activities.py:359
495
+ msgid "End"
496
+ msgstr ""
497
+
498
+ #: models/activities.py:365
499
+ msgid "Reminder"
500
+ msgstr ""
501
+
502
+ #: models/activities.py:367
503
+ msgid ""
504
+ "Sends a mail and system notification to all participating internal employees "
505
+ "before the start of the activity."
506
+ msgstr ""
507
+
508
+ #: models/activities.py:371 report/activity_report.py:75
509
+ msgid "Location"
510
+ msgstr ""
511
+
512
+ #: models/activities.py:374
513
+ msgid "Longitude"
514
+ msgstr ""
515
+
516
+ #: models/activities.py:377
517
+ msgid "Latitude"
518
+ msgstr ""
519
+
520
+ #: models/activities.py:386 report/activity_report.py:76
521
+ msgid "Creator"
522
+ msgstr ""
523
+
524
+ #: models/activities.py:387
525
+ msgid "The creator of this activity"
526
+ msgstr ""
527
+
528
+ #: models/activities.py:395 viewsets/display/activities.py:382
529
+ msgid "Latest Reviewer"
530
+ msgstr ""
531
+
532
+ #: models/activities.py:396
533
+ msgid "The latest person to review the activity"
534
+ msgstr ""
535
+
536
+ #: models/activities.py:398
537
+ msgid "Reviewed at"
538
+ msgstr ""
539
+
540
+ #: models/activities.py:406 report/activity_report.py:77
541
+ #: serializers/activities.py:238
542
+ msgid "Assigned to"
543
+ msgstr ""
544
+
545
+ #: models/activities.py:407
546
+ msgid "The person in charge of handling this activity"
547
+ msgstr ""
548
+
549
+ #: models/activities.py:413
550
+ msgid "Participating Companies"
551
+ msgstr ""
552
+
553
+ #: models/activities.py:414
554
+ msgid ""
555
+ "The list of companies other than the main company that participate in this "
556
+ "activity"
557
+ msgstr ""
558
+
559
+ #: models/activities.py:423
560
+ msgid "Participating Persons"
561
+ msgstr ""
562
+
563
+ #: models/activities.py:424
564
+ msgid "The list of participants"
565
+ msgstr ""
566
+
567
+ #: models/activities.py:434
568
+ msgid ""
569
+ "Each member of the group will be added to the list of participants and "
570
+ "companies automatically."
571
+ msgstr ""
572
+
573
+ #: models/activities.py:442
574
+ msgid "Preceded by"
575
+ msgstr ""
576
+
577
+ #: models/activities.py:443
578
+ msgid "The preceding activity"
579
+ msgstr ""
580
+
581
+ #: models/activities.py:447
582
+ msgid "Without Participating Company"
583
+ msgstr ""
584
+
585
+ #: models/activities.py:608
586
+ #, python-brace-format
587
+ msgid ""
588
+ "For the following participants you did not supply an employer: {persons}<br /"
589
+ ">"
590
+ msgstr ""
591
+
592
+ #: models/activities.py:614
593
+ #, python-brace-format
594
+ msgid ""
595
+ "For the following companies you did not supply an employee: {companies}<br />"
596
+ msgstr ""
597
+
598
+ #: models/activities.py:629
599
+ msgid "Period needs to be set for recurrence to work!"
600
+ msgstr ""
601
+
602
+ #: models/activities.py:976
603
+ msgid " starting at the {} at {}"
604
+ msgstr ""
605
+
606
+ #: models/activities.py:982
607
+ msgid "{} added you"
608
+ msgstr ""
609
+
610
+ #: models/activities.py:984
611
+ msgid "You were automatically added"
612
+ msgstr ""
613
+
614
+ #: models/activities.py:989
615
+ msgid "{} as participant in a {}{}"
616
+ msgstr ""
617
+
618
+ #: models/activities.py:1022 models/products.py:18
619
+ msgid "Company"
620
+ msgstr ""
621
+
622
+ #: models/activities.py:1029
623
+ msgid "Initial Customer Status"
624
+ msgstr ""
625
+
626
+ #: models/activities.py:1030
627
+ msgid "The Customer Status at activity creation time"
628
+ msgstr ""
629
+
630
+ #: models/activities.py:1049 models/activities.py:1141
631
+ msgid "Maybe"
632
+ msgstr ""
633
+
634
+ #: models/activities.py:1050
635
+ msgid "Attends"
636
+ msgstr ""
637
+
638
+ #: models/activities.py:1051
639
+ msgid "Not Responded"
640
+ msgstr ""
641
+
642
+ #: models/activities.py:1052
643
+ msgid "Attends Digitally"
644
+ msgstr ""
645
+
646
+ #: models/activities.py:1053
647
+ msgid "Pending Invitation"
648
+ msgstr ""
649
+
650
+ #: models/activities.py:1064 viewsets/display/activities.py:400
651
+ msgid "Participant"
652
+ msgstr ""
653
+
654
+ #: models/activities.py:1070 viewsets/display/activities.py:401
655
+ #: viewsets/titles/activities.py:56
656
+ msgid "Participation Status"
657
+ msgstr ""
658
+
659
+ #: models/activities.py:1075
660
+ #, python-brace-format
661
+ msgid "Status of {participant} for activity {title} is: {status}"
662
+ msgstr ""
663
+
664
+ #: models/activities.py:1083
665
+ msgid "Activity's Participant"
666
+ msgstr ""
667
+
668
+ #: models/activities.py:1084
669
+ msgid "Activities' Participants"
670
+ msgstr ""
671
+
672
+ #: models/activities.py:1142
673
+ msgid "Setting Maybe"
674
+ msgstr ""
675
+
676
+ #: models/activities.py:1166
677
+ msgid "Accept"
678
+ msgstr ""
679
+
680
+ #: models/activities.py:1167
681
+ msgid "Accepting"
682
+ msgstr ""
683
+
684
+ #: models/activities.py:1168
685
+ msgid "Are you sure you want to participate in this activity?"
686
+ msgstr ""
687
+
688
+ #: models/activities.py:1193
689
+ msgid "Attend Digitally"
690
+ msgstr ""
691
+
692
+ #: models/activities.py:1194
693
+ msgid "Setting Attendance"
694
+ msgstr ""
695
+
696
+ #: models/activities.py:1195
697
+ msgid "Are you sure you want to attend digitally in this activity?"
698
+ msgstr ""
699
+
700
+ #: models/activities.py:1219 models/activities.py:1220
701
+ msgid "Decline"
702
+ msgstr ""
703
+
704
+ #: models/activities.py:1221
705
+ msgid "Are you sure you want to decline to participate in this activity?"
706
+ msgstr ""
707
+
708
+ #: models/activities.py:1239
709
+ msgid "Resend Invitation"
710
+ msgstr ""
711
+
712
+ #: models/activities.py:1240
713
+ msgid "Resending Invitation"
714
+ msgstr ""
715
+
716
+ #: models/activities.py:1242
717
+ msgid ""
718
+ "Are you sure you want to send this person an invitation to participate in "
719
+ "this activity again?"
720
+ msgstr ""
721
+
722
+ #: models/groups.py:19
723
+ msgid "Group"
724
+ msgstr ""
725
+
726
+ #: models/products.py:12 models/products.py:77 viewsets/display/products.py:58
727
+ #: viewsets/titles/products.py:13
728
+ msgid "Product"
729
+ msgstr ""
730
+
731
+ #: models/products.py:26
732
+ msgid "Company-Product Relationship"
733
+ msgstr ""
734
+
735
+ #: models/products.py:27
736
+ msgid "Company-Product Relationships"
737
+ msgstr ""
738
+
739
+ #: models/products.py:45
740
+ msgid "Indicates wether this is a competitor's product"
741
+ msgstr ""
742
+
743
+ #: models/products.py:53
744
+ msgid "The list of prospects"
745
+ msgstr ""
746
+
747
+ #: models/products.py:62
748
+ msgid "{} (Competitor)"
749
+ msgstr ""
750
+
751
+ #: models/products.py:78 viewsets/menu/products.py:6
752
+ #: viewsets/titles/products.py:7
753
+ msgid "Products"
754
+ msgstr ""
755
+
756
+ #: models/recurrence.py:22
757
+ msgid "Business Daily"
758
+ msgstr ""
759
+
760
+ #: models/recurrence.py:23
761
+ msgid "Daily"
762
+ msgstr ""
763
+
764
+ #: models/recurrence.py:24
765
+ msgid "Weekly"
766
+ msgstr ""
767
+
768
+ #: models/recurrence.py:25
769
+ msgid "Bi-Weekly"
770
+ msgstr ""
771
+
772
+ #: models/recurrence.py:26
773
+ msgid "Monthly"
774
+ msgstr ""
775
+
776
+ #: models/recurrence.py:27
777
+ msgid "Quarterly"
778
+ msgstr ""
779
+
780
+ #: models/recurrence.py:28
781
+ msgid "Annually"
782
+ msgstr ""
783
+
784
+ #: models/recurrence.py:35 viewsets/buttons/activities.py:24
785
+ msgid "Parent Activity"
786
+ msgstr ""
787
+
788
+ #: models/recurrence.py:40
789
+ msgid "Propagate for all following activities?"
790
+ msgstr ""
791
+
792
+ #: models/recurrence.py:41
793
+ msgid ""
794
+ "If this is checked, changes will be propagated to the following activities."
795
+ msgstr ""
796
+
797
+ #: models/recurrence.py:45
798
+ msgid "Exclude occurrence from propagation?"
799
+ msgstr ""
800
+
801
+ #: models/recurrence.py:46
802
+ msgid "If this is checked, changes will not be propagated on this activity."
803
+ msgstr ""
804
+
805
+ #: models/recurrence.py:49
806
+ msgid "Date"
807
+ msgstr ""
808
+
809
+ #: models/recurrence.py:53
810
+ msgid ""
811
+ "Specifies until when an event is to be repeated. Is mutually exclusive with "
812
+ "the Recurrence Count."
813
+ msgstr ""
814
+
815
+ #: models/recurrence.py:60
816
+ msgid "Count"
817
+ msgstr ""
818
+
819
+ #: models/recurrence.py:62
820
+ msgid ""
821
+ "Specifies how often an activity should be repeated excluding the original "
822
+ "activity. Is mutually exclusive with the end date. Limited to a maximum of "
823
+ "365 recurrences."
824
+ msgstr ""
825
+
826
+ #: models/recurrence.py:69
827
+ msgid "Recurrence Frequency"
828
+ msgstr ""
829
+
830
+ #: models/recurrence.py:70
831
+ msgid "Repeat activity at the specified frequency"
832
+ msgstr ""
833
+
834
+ #: report/activity_report.py:43
835
+ msgid "Report"
836
+ msgstr ""
837
+
838
+ #: report/activity_report.py:46
839
+ msgid "all"
840
+ msgstr ""
841
+
842
+ #: report/activity_report.py:74
843
+ msgid "Duration (hours)"
844
+ msgstr ""
845
+
846
+ #: report/activity_report.py:80
847
+ msgid "Total"
848
+ msgstr ""
849
+
850
+ #: serializers/accounts.py:122
851
+ msgid ""
852
+ "The selected entry does not have an associated user account. Note: "
853
+ "Notifications cannot be sent to users without an account."
854
+ msgstr ""
855
+
856
+ #: serializers/activities.py:51
857
+ msgid "Cannot add a duplicate activity type."
858
+ msgstr ""
859
+
860
+ #: serializers/activities.py:126 viewsets/titles/activities.py:20
861
+ msgid "Private Activity"
862
+ msgstr ""
863
+
864
+ #: serializers/activities.py:126 viewsets/titles/activities.py:23
865
+ msgid "Confidential Activity"
866
+ msgstr ""
867
+
868
+ #: serializers/activities.py:226
869
+ msgid "Recurrence End"
870
+ msgstr ""
871
+
872
+ #: serializers/activities.py:231
873
+ msgid ""
874
+ "Set to private for the activity to hide sensitive information from anyone "
875
+ "but the assignee and participants. Set to confidential to hide from anyone "
876
+ "but users with manager permissions."
877
+ msgstr ""
878
+
879
+ #: serializers/activities.py:262 viewsets/display/activities.py:374
880
+ msgid "Period"
881
+ msgstr ""
882
+
883
+ #: serializers/activities.py:313
884
+ msgid "Please add an activity type."
885
+ msgstr ""
886
+
887
+ #: serializers/activities.py:331
888
+ msgid "A private activity already uses this conference room at the same time."
889
+ msgstr ""
890
+
891
+ #: serializers/activities.py:342
892
+ msgid ""
893
+ "A confidential activity already uses this conference room at the same time."
894
+ msgstr ""
895
+
896
+ #: serializers/activities.py:350
897
+ #, python-brace-format
898
+ msgid ""
899
+ "The activity \"{title}\" already uses this conference room at the same time."
900
+ msgstr ""
901
+
902
+ #: serializers/activities.py:392
903
+ msgid "is a member"
904
+ msgstr ""
905
+
906
+ #: serializers/activities.py:395
907
+ msgid " and"
908
+ msgstr ""
909
+
910
+ #: serializers/activities.py:396
911
+ msgid "are members"
912
+ msgstr ""
913
+
914
+ #: serializers/activities.py:402
915
+ #, python-brace-format
916
+ msgid ""
917
+ "{missing_members} {util_str} of the following group(s): {groups}\n"
918
+ ". You cannot remove members of selected groups."
919
+ msgstr ""
920
+
921
+ #: serializers/activities.py:483 viewsets/display/activities.py:403
922
+ msgid "Position"
923
+ msgstr ""
924
+
925
+ #: serializers/activities.py:485
926
+ msgid "Primary Telephone"
927
+ msgstr ""
928
+
929
+ #: serializers/activities.py:488 viewsets/display/activities.py:404
930
+ msgid "Primary Email"
931
+ msgstr ""
932
+
933
+ #: serializers/activities.py:501
934
+ msgid "The person is already a participant in this activity."
935
+ msgstr ""
936
+
937
+ #: serializers/products.py:46
938
+ msgid "competitor "
939
+ msgstr ""
940
+
941
+ #: serializers/products.py:47
942
+ msgid "Cannot add a duplicate {}product."
943
+ msgstr ""
944
+
945
+ #: serializers/recurrence.py:58
946
+ msgid "Please provide a valid timeframe."
947
+ msgstr ""
948
+
949
+ #: serializers/recurrence.py:61
950
+ msgid ""
951
+ "You can only pick either a recurrence count or an end date but not both."
952
+ msgstr ""
953
+
954
+ #: serializers/recurrence.py:76
955
+ msgid ""
956
+ "The \"Repeat Until\" date needs to be after the \"Recurrence Start\" date."
957
+ msgstr ""
958
+
959
+ #: serializers/recurrence.py:81
960
+ msgid "Period must correspond to the recurrence 'Business Daily'"
961
+ msgstr ""
962
+
963
+ #: serializers/recurrence.py:89
964
+ msgid "It is only possible to change the time of the period of an occurrence."
965
+ msgstr ""
966
+
967
+ #: serializers/signals.py:39
968
+ #, python-brace-format
969
+ msgid "Call with {name}"
970
+ msgstr ""
971
+
972
+ #: synchronization/activity/admin.py:34
973
+ msgid "Operation completed, we have set the webhook for {} users."
974
+ msgstr ""
975
+
976
+ #: synchronization/activity/admin.py:39 synchronization/activity/admin.py:53
977
+ #: synchronization/activity/admin.py:67
978
+ msgid "Operation Failed, {}"
979
+ msgstr ""
980
+
981
+ #: synchronization/activity/admin.py:48
982
+ msgid "Operation completed, we have stopped the webhook for {} users."
983
+ msgstr ""
984
+
985
+ #: synchronization/activity/admin.py:62
986
+ msgid "Operation completed, we checked the webhook for {} users."
987
+ msgstr ""
988
+
989
+ #: synchronization/activity/backend.py:188
990
+ msgid "Notify admins of event webhook inconsistencies - {}"
991
+ msgstr ""
992
+
993
+ #: synchronization/activity/backends/google/google_calendar_backend.py:37
994
+ msgid ""
995
+ "The Google credentials are not set. You cannot use the Google Calendar "
996
+ "Backend without the Google credentials."
997
+ msgstr ""
998
+
999
+ #: synchronization/activity/backends/google/google_calendar_backend.py:39
1000
+ msgid "Could not create the Google service. Exception: "
1001
+ msgstr ""
1002
+
1003
+ #: synchronization/activity/backends/google/google_calendar_backend.py:40
1004
+ msgid "Could not create the external google event. Exception: "
1005
+ msgstr ""
1006
+
1007
+ #: synchronization/activity/backends/google/google_calendar_backend.py:41
1008
+ msgid "Could not delete a corresponding external event. Exception: "
1009
+ msgstr ""
1010
+
1011
+ #: synchronization/activity/backends/google/google_calendar_backend.py:42
1012
+ msgid "Could not update the external google-event. Exception: "
1013
+ msgstr ""
1014
+
1015
+ #: synchronization/activity/backends/google/google_calendar_backend.py:44
1016
+ msgid ""
1017
+ "Could not update the participation status on the google-event. Exception: "
1018
+ msgstr ""
1019
+
1020
+ #: synchronization/activity/backends/google/google_calendar_backend.py:46
1021
+ msgid "Couldn't sync with google calendar. Exception:"
1022
+ msgstr ""
1023
+
1024
+ #: synchronization/activity/backends/google/google_calendar_backend.py:47
1025
+ msgid "Could not set the google web hook for the user: "
1026
+ msgstr ""
1027
+
1028
+ #: synchronization/activity/backends/google/google_calendar_backend.py:394
1029
+ msgid "Timestamp valid until:"
1030
+ msgstr ""
1031
+
1032
+ #: synchronization/activity/backends/google/google_calendar_backend.py:396
1033
+ msgid "No valid web hook found"
1034
+ msgstr ""
1035
+
1036
+ #: synchronization/activity/backends/outlook/backend.py:382
1037
+ msgid "Outlook TenantId not found for: "
1038
+ msgstr ""
1039
+
1040
+ #: synchronization/activity/backends/outlook/backend.py:397
1041
+ msgid " has no active webhook"
1042
+ msgstr ""
1043
+
1044
+ #: synchronization/activity/backends/outlook/backend.py:405
1045
+ msgid "Webhook is invalid, Remove or Stop it and Set again please. "
1046
+ msgstr ""
1047
+
1048
+ #: synchronization/activity/backends/outlook/backend.py:407
1049
+ msgid "Webhook not found. "
1050
+ msgstr ""
1051
+
1052
+ #: synchronization/activity/backends/outlook/backend.py:416
1053
+ msgid ""
1054
+ "Number of subscriptions found in outlook for {} out of the total number: {}/"
1055
+ "{}."
1056
+ msgstr ""
1057
+
1058
+ #: synchronization/activity/backends/outlook/backend.py:419
1059
+ msgid "TenantId not found for "
1060
+ msgstr ""
1061
+
1062
+ #: synchronization/activity/backends/outlook/backend.py:456
1063
+ msgid "<li>No Call Record subscription found in Microsoft</li>"
1064
+ msgstr ""
1065
+
1066
+ #: synchronization/activity/backends/outlook/backend.py:461
1067
+ msgid ""
1068
+ "\n"
1069
+ " <li>Number of calendar subscription not found in our "
1070
+ "system : <b>{}</b></li>\n"
1071
+ " <p>{}</p>\n"
1072
+ "\n"
1073
+ " <li>Number of calendar subscription assumed to be active not "
1074
+ "found in outlook: <b>{}</b></li>\n"
1075
+ " <p>{}</p>\n"
1076
+ " "
1077
+ msgstr ""
1078
+
1079
+ #: synchronization/activity/dynamic_preferences_registry.py:15
1080
+ msgid "Synchronization Backend Calendar"
1081
+ msgstr ""
1082
+
1083
+ #: synchronization/activity/dynamic_preferences_registry.py:16
1084
+ msgid ""
1085
+ "The Backend Calendar to synchronize activities with an external calendar."
1086
+ msgstr ""
1087
+
1088
+ #: synchronization/activity/dynamic_preferences_registry.py:25
1089
+ msgid "Synchronization Past Activity"
1090
+ msgstr ""
1091
+
1092
+ #: synchronization/activity/dynamic_preferences_registry.py:34
1093
+ msgid "Cancel Internal Activity Instead Of Deleting"
1094
+ msgstr ""
1095
+
1096
+ #: synchronization/activity/dynamic_preferences_registry.py:36
1097
+ msgid ""
1098
+ "When an activity is deleted in an external calendar the corresponding "
1099
+ "workbench activity can be cancelled (default) or also deleted."
1100
+ msgstr ""
1101
+
1102
+ #: synchronization/activity/dynamic_preferences_registry.py:46
1103
+ msgid "Cancel External Activity With One Non-Attending Internal Participant"
1104
+ msgstr ""
1105
+
1106
+ #: synchronization/activity/dynamic_preferences_registry.py:48
1107
+ msgid ""
1108
+ "When an activity was created by an external person and has only one internal "
1109
+ "participant the activity in the workbench can be canceled if this "
1110
+ "participant doesn't choose to attend."
1111
+ msgstr ""
1112
+
1113
+ #: synchronization/activity/dynamic_preferences_registry.py:58
1114
+ msgid "Synchronize Activity Description"
1115
+ msgstr ""
1116
+
1117
+ #: synchronization/activity/dynamic_preferences_registry.py:67
1118
+ msgid ""
1119
+ "Synchronize External Participants From Internal Calendar To External Calendar"
1120
+ msgstr ""
1121
+
1122
+ #: synchronization/activity/dynamic_preferences_registry.py:76
1123
+ msgid "Create New Activity When Replanning Passed Reviewed Activities"
1124
+ msgstr ""
1125
+
1126
+ #: synchronization/activity/dynamic_preferences_registry.py:78
1127
+ msgid ""
1128
+ "If an activity with a past end date (already passed and reviewed) is moved "
1129
+ "to a future date, a new activity will automatically be created for the "
1130
+ "updated schedule."
1131
+ msgstr ""
1132
+
1133
+ #: synchronization/activity/dynamic_preferences_registry.py:87
1134
+ msgid "Google Synchronization Credentials"
1135
+ msgstr ""
1136
+
1137
+ #: synchronization/activity/dynamic_preferences_registry.py:96
1138
+ msgid "Outlook Synchronization Credentials"
1139
+ msgstr ""
1140
+
1141
+ #: synchronization/activity/dynamic_preferences_registry.py:106
1142
+ msgid "Microsoft Graph Access Token"
1143
+ msgstr ""
1144
+
1145
+ #: synchronization/activity/dynamic_preferences_registry.py:107
1146
+ msgid ""
1147
+ "The access token obtained from subscriptions to Microsoft used for "
1148
+ "authentication pruposes"
1149
+ msgstr ""
1150
+
1151
+ #: synchronization/activity/dynamic_preferences_registry.py:116
1152
+ msgid "Microsoft Graph Webhook Secret Client State"
1153
+ msgstr ""
1154
+
1155
+ #: synchronization/activity/dynamic_preferences_registry.py:118
1156
+ msgid ""
1157
+ "Secret Client Value defined during subscription, it will be injected into "
1158
+ "the webhook notification against spoofing"
1159
+ msgstr ""
1160
+
1161
+ #: tasks.py:90
1162
+ #, python-brace-format
1163
+ msgid "{type} in {reminder} Minutes"
1164
+ msgstr ""
1165
+
1166
+ #: tasks.py:154
1167
+ msgid "Activity Summary {}"
1168
+ msgstr ""
1169
+
1170
+ #: tasks.py:203
1171
+ msgid "Your Schedule for Today"
1172
+ msgstr ""
1173
+
1174
+ #: tasks.py:233
1175
+ msgid "Activity Finished"
1176
+ msgstr ""
1177
+
1178
+ #: tasks.py:234
1179
+ #, python-brace-format
1180
+ msgid ""
1181
+ "The activity \"{title}\" just finished and you are in charge of it. Please "
1182
+ "review."
1183
+ msgstr ""
1184
+
1185
+ #: templates/email/activity.html:5
1186
+ msgid "This is a reminder for an upcoming "
1187
+ msgstr ""
1188
+
1189
+ #: templates/email/activity_report.html:4
1190
+ msgid "Dear "
1191
+ msgstr ""
1192
+
1193
+ #: templates/email/activity_report.html:5
1194
+ msgid "Attached you will find the requested Excel activity report for"
1195
+ msgstr ""
1196
+
1197
+ #: templates/email/daily_summary.html:4
1198
+ msgid "You have"
1199
+ msgstr ""
1200
+
1201
+ #: templates/email/daily_summary.html:4
1202
+ msgid "Activities today"
1203
+ msgstr ""
1204
+
1205
+ #: templates/email/global_daily_summary.html:12
1206
+ #, python-format
1207
+ msgid "There were %(activities_count)s activities on %(report_date)s."
1208
+ msgstr ""
1209
+
1210
+ #: viewsets/activities.py:197
1211
+ msgid ""
1212
+ "You can only modify the review text for an activity that is either cancelled "
1213
+ "or already reviewed."
1214
+ msgstr ""
1215
+
1216
+ #: viewsets/activities.py:204
1217
+ msgid ""
1218
+ "This activity was created by an external user and synchronized. The "
1219
+ "modification is restricted."
1220
+ msgstr ""
1221
+
1222
+ #: viewsets/activities.py:226
1223
+ msgid ""
1224
+ "There are more participants currently participating in this activity than "
1225
+ "the maximum capacity of the selected conference room allows."
1226
+ msgstr ""
1227
+
1228
+ #: viewsets/activities.py:283
1229
+ msgid "<b>User Activity</b>"
1230
+ msgstr ""
1231
+
1232
+ #: viewsets/buttons/activities.py:12
1233
+ msgid ""
1234
+ "<p> Are you sure you want to delete all the future instances of this "
1235
+ "activity? <br> Only 'Planned' and 'Canceled' activities will be deleted. "
1236
+ "<br> Depending on the number of activities to be deleted <br> it may "
1237
+ "take some time until the deleted activities are no longer displayed in the "
1238
+ "activity list. </p>"
1239
+ msgstr ""
1240
+
1241
+ #: viewsets/buttons/activities.py:30
1242
+ msgid "Delete Next Occurrences"
1243
+ msgstr ""
1244
+
1245
+ #: viewsets/buttons/activities.py:33 viewsets/buttons/activities.py:34
1246
+ msgid "Delete"
1247
+ msgstr ""
1248
+
1249
+ #: viewsets/buttons/activities.py:37
1250
+ msgid "Next Activity"
1251
+ msgstr ""
1252
+
1253
+ #: viewsets/buttons/activities.py:39
1254
+ msgid "Previous Activity"
1255
+ msgstr ""
1256
+
1257
+ #: viewsets/buttons/activities.py:67
1258
+ msgid "Show Participants' Activities"
1259
+ msgstr ""
1260
+
1261
+ #: viewsets/display/activities.py:46
1262
+ msgid "Icon"
1263
+ msgstr ""
1264
+
1265
+ #: viewsets/display/activities.py:47
1266
+ msgid "Color"
1267
+ msgstr ""
1268
+
1269
+ #: viewsets/display/activities.py:48
1270
+ msgid "Multiplier"
1271
+ msgstr ""
1272
+
1273
+ #: viewsets/display/activities.py:49
1274
+ msgid "Is Default"
1275
+ msgstr ""
1276
+
1277
+ #: viewsets/display/activities.py:92 viewsets/display/activities.py:181
1278
+ #: viewsets/display/activities.py:297
1279
+ msgid "Main Information"
1280
+ msgstr ""
1281
+
1282
+ #: viewsets/display/activities.py:147 viewsets/display/activities.py:229
1283
+ #: viewsets/display/activities.py:342
1284
+ msgid "Additional Information"
1285
+ msgstr ""
1286
+
1287
+ #: viewsets/display/activities.py:217
1288
+ msgid "Participant Information"
1289
+ msgstr ""
1290
+
1291
+ #: viewsets/display/activities.py:273 viewsets/display/activities.py:277
1292
+ msgid "Repeat Until"
1293
+ msgstr ""
1294
+
1295
+ #: viewsets/display/activities.py:370
1296
+ msgid "Sentiment"
1297
+ msgstr ""
1298
+
1299
+ #: viewsets/display/activities.py:373
1300
+ msgid "Summary"
1301
+ msgstr ""
1302
+
1303
+ #: viewsets/display/activities.py:379
1304
+ msgctxt "As a table header"
1305
+ msgid "Created"
1306
+ msgstr ""
1307
+
1308
+ #: viewsets/display/activities.py:381
1309
+ msgctxt "As a table header"
1310
+ msgid "Review"
1311
+ msgstr ""
1312
+
1313
+ #: viewsets/display/activities.py:402
1314
+ msgid "Status Changed"
1315
+ msgstr ""
1316
+
1317
+ #: viewsets/display/activities.py:405
1318
+ msgid "Primary Phone Number"
1319
+ msgstr ""
1320
+
1321
+ #: viewsets/display/activities.py:413
1322
+ msgid "Is Available"
1323
+ msgstr ""
1324
+
1325
+ #: viewsets/display/activities.py:418
1326
+ msgid "Is Occupied"
1327
+ msgstr ""
1328
+
1329
+ #: viewsets/display/groups.py:16
1330
+ msgid "Name"
1331
+ msgstr ""
1332
+
1333
+ #: viewsets/display/products.py:71
1334
+ msgid "Interests"
1335
+ msgstr ""
1336
+
1337
+ #: viewsets/display/products.py:80 viewsets/display/products.py:85
1338
+ msgid "Interested Products"
1339
+ msgstr ""
1340
+
1341
+ #: viewsets/menu/activities.py:18
1342
+ msgid "Create Activity Type"
1343
+ msgstr ""
1344
+
1345
+ #: viewsets/menu/activities.py:35
1346
+ msgid "Create Activity"
1347
+ msgstr ""
1348
+
1349
+ #: viewsets/menu/activities.py:44 viewsets/titles/activities.py:61
1350
+ msgid "Activity Chart"
1351
+ msgstr ""
1352
+
1353
+ #: viewsets/menu/groups.py:10
1354
+ msgid "Create Groups"
1355
+ msgstr ""
1356
+
1357
+ #: viewsets/menu/products.py:13
1358
+ msgid "Create Product"
1359
+ msgstr ""
1360
+
1361
+ #: viewsets/recurrence.py:24
1362
+ #, python-brace-format
1363
+ msgid "This is a recurring occurrence with period {repeat_choice}"
1364
+ msgstr ""
1365
+
1366
+ #: viewsets/titles/activities.py:10
1367
+ msgid "New Activity Type"
1368
+ msgstr ""
1369
+
1370
+ #: viewsets/titles/activities.py:25
1371
+ msgid "Activity: {{title}}"
1372
+ msgstr ""
1373
+
1374
+ #: viewsets/titles/activities.py:30
1375
+ msgid "Delete Private Activity"
1376
+ msgstr ""
1377
+
1378
+ #: viewsets/titles/activities.py:33
1379
+ msgid "Delete Confidential Activity"
1380
+ msgstr ""
1381
+
1382
+ #: viewsets/titles/activities.py:35
1383
+ msgid "Delete Activity: {{title}}"
1384
+ msgstr ""
1385
+
1386
+ #: viewsets/titles/activities.py:40
1387
+ #, python-brace-format
1388
+ msgid "Activities for {person}"
1389
+ msgstr ""
1390
+
1391
+ #: viewsets/titles/activities.py:42
1392
+ msgid "Activities for Multiple Persons"
1393
+ msgstr ""
1394
+
1395
+ #: viewsets/titles/activities.py:45
1396
+ msgid "Activities for {}"
1397
+ msgstr ""
1398
+
1399
+ #: viewsets/titles/activities.py:50
1400
+ #, python-brace-format
1401
+ msgid "New Activity for {entry}"
1402
+ msgstr ""
1403
+
1404
+ #: viewsets/titles/activities.py:51
1405
+ msgid "New Activity"
1406
+ msgstr ""
1407
+
1408
+ #: viewsets/titles/products.py:10
1409
+ msgid "Add Product"
1410
+ msgstr ""
1411
+
1412
+ #: viewsets/titles/utils.py:7
1413
+ msgid "Customer Statuses"
1414
+ msgstr ""
1415
+
1416
+ #: viewsets/titles/utils.py:10
1417
+ msgid "New Customer Status"
1418
+ msgstr ""
1419
+
1420
+ #: viewsets/titles/utils.py:18
1421
+ msgid "Company Positions"
1422
+ msgstr ""
1423
+
1424
+ #: viewsets/titles/utils.py:21
1425
+ msgid "New Company Position"
1426
+ msgstr ""
1427
+
1428
+ #: viewsets/titles/utils.py:24
1429
+ msgid "Company Position"
1430
+ msgstr ""
1431
+
1432
+ #: viewsets/titles/utils.py:29
1433
+ msgid "Company Types"
1434
+ msgstr ""
1435
+
1436
+ #: viewsets/titles/utils.py:32
1437
+ msgid "New Company Type"
1438
+ msgstr ""
1439
+
1440
+ #: viewsets/titles/utils.py:35
1441
+ msgid "Company Type"
1442
+ msgstr ""
1443
+
1444
+ #: viewsets/titles/utils.py:40
1445
+ msgid "Specializations"
1446
+ msgstr ""
1447
+
1448
+ #: viewsets/titles/utils.py:43
1449
+ msgid "New Specialization"
1450
+ msgstr ""
1451
+
1452
+ #: viewsets/titles/utils.py:46
1453
+ msgid "Specialization"
1454
+ msgstr ""
1455
+
1456
+ #: workflows/assignee_methods.py:18
1457
+ msgid "Assignee has no user account!"
1458
+ msgstr ""
1459
+
1460
+ #: workflows/assignee_methods.py:20
1461
+ msgid "No activity attached!"
1462
+ msgstr ""
1463
+
1464
+ #: workflows/assignee_methods.py:23
1465
+ msgid "Error in assignee method: {}"
1466
+ msgstr ""