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