You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

588 lines
21 KiB

privacy_consent: Separate automated emails send process Before https://github.com/OCA/data-protection/pull/29 there was a race condition where an email could be sent while the same transaction that created the `privacy.consent` record still wasn't committed, producing a 404 error if the user clicked on "Accept" or "Reject" before all mails were sent. To avoid that, a raw `cr.commit()` was issued, but this produced another situation where the user had to wait until the full email queue is cleared to get his page loaded. It wasn't an error, but a long queue meant several minutes waiting, and it's ulikely that an average human is so patient. So, here's the final fix (I hope!). The main problem was that I was looking in the wrong place to send the email. It turns out that the `self.post_message_with_template()` method is absolutely helpless in the case at hand, where these criteria must be met: * E-mail must be enqueued, no matter if there are less or more than 50 consents to send. * The template must be processed per record. * In an ideal world, a `cr.commit()` must be issued after each sent mail. The metod that was being used: * Didn't allow to use `auto_commit` mode. * Only allowed to render the template per record if called with `composition_mode="mass_mail"`. * Only allowed to enqueue emails if called with `composition_mode="mass_post"`. Obviously, I cannot set 2 different values for `composition_mode`, so a different strategy had to be used. I discovered that the `mail.template` model has a helpful method called `send_mail()` that, by default: * Renders the template per record * Enqueues the email * The email queue is cleared in `auto_commit=True` mode. So, from now on, problems are gone: * The user click, or the cron run, will just generate the missing `privacy.consent` records and enqueue mails for them. * The mail queue manager will send them later, in `auto_commit` mode. * After sending the e-mail, this module will set the `privacy.consent` record as `sent`. * Thanks to *not* sending the email, the process the user faces when he hits the "generate" button is faster. * Instructions in the README and text in the "generate" button are updated to reflect this new behavior. * Thanks to the `auto_commit` feature, if Odoo is rebooted in the middle of a mail queue clearance, the records that were sent remain properly marked as sent, and the missing mails will be sent after the next boot. * No hardcoded commits. * No locked transactions. * BTW I discovered that 2 different emails were created when creating a new consent. I started using `mail_create_nolog=True` to avoid that problem and only log a single creation message. Note to self: never use again `post_message_with_template()`.
5 years ago
privacy_consent: Separate automated emails send process Before https://github.com/OCA/data-protection/pull/29 there was a race condition where an email could be sent while the same transaction that created the `privacy.consent` record still wasn't committed, producing a 404 error if the user clicked on "Accept" or "Reject" before all mails were sent. To avoid that, a raw `cr.commit()` was issued, but this produced another situation where the user had to wait until the full email queue is cleared to get his page loaded. It wasn't an error, but a long queue meant several minutes waiting, and it's ulikely that an average human is so patient. So, here's the final fix (I hope!). The main problem was that I was looking in the wrong place to send the email. It turns out that the `self.post_message_with_template()` method is absolutely helpless in the case at hand, where these criteria must be met: * E-mail must be enqueued, no matter if there are less or more than 50 consents to send. * The template must be processed per record. * In an ideal world, a `cr.commit()` must be issued after each sent mail. The metod that was being used: * Didn't allow to use `auto_commit` mode. * Only allowed to render the template per record if called with `composition_mode="mass_mail"`. * Only allowed to enqueue emails if called with `composition_mode="mass_post"`. Obviously, I cannot set 2 different values for `composition_mode`, so a different strategy had to be used. I discovered that the `mail.template` model has a helpful method called `send_mail()` that, by default: * Renders the template per record * Enqueues the email * The email queue is cleared in `auto_commit=True` mode. So, from now on, problems are gone: * The user click, or the cron run, will just generate the missing `privacy.consent` records and enqueue mails for them. * The mail queue manager will send them later, in `auto_commit` mode. * After sending the e-mail, this module will set the `privacy.consent` record as `sent`. * Thanks to *not* sending the email, the process the user faces when he hits the "generate" button is faster. * Instructions in the README and text in the "generate" button are updated to reflect this new behavior. * Thanks to the `auto_commit` feature, if Odoo is rebooted in the middle of a mail queue clearance, the records that were sent remain properly marked as sent, and the missing mails will be sent after the next boot. * No hardcoded commits. * No locked transactions. * BTW I discovered that 2 different emails were created when creating a new consent. I started using `mail_create_nolog=True` to avoid that problem and only log a single creation message. Note to self: never use again `post_message_with_template()`.
5 years ago
  1. # Translation of Odoo Server.
  2. # This file contains the translation of the following modules:
  3. # * privacy_consent
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Odoo Server 12.0\n"
  8. "Report-Msgid-Bugs-To: \n"
  9. "Last-Translator: <>\n"
  10. "Language-Team: \n"
  11. "MIME-Version: 1.0\n"
  12. "Content-Type: text/plain; charset=UTF-8\n"
  13. "Content-Transfer-Encoding: \n"
  14. "Plural-Forms: \n"
  15. #. module: privacy_consent
  16. #: model:mail.template,body_html:privacy_consent.template_consent
  17. msgid "<?xml version=\"1.0\"?>\n"
  18. "<div style=\"background:#F3F5F6;color:#515166;padding:25px 0px;font-family:Arial,Helvetica,sans-serif;font-size:14px;\">\n"
  19. " <table style=\"width:600px;margin:5px auto;\">\n"
  20. " <tbody>\n"
  21. " <tr>\n"
  22. " <td>\n"
  23. " <a href=\"/\">\n"
  24. " <img src=\"/logo\" alt=\"${object.activity_id.controller_id.display_name|safe}\" style=\"vertical-align:baseline;max-width:100px;\"/>\n"
  25. " </a>\n"
  26. " </td>\n"
  27. " </tr>\n"
  28. " </tbody>\n"
  29. " </table>\n"
  30. " <table style=\"width:600px;margin:0px auto;background:white;border:1px solid #e1e1e1;\">\n"
  31. " <tbody>\n"
  32. " <tr>\n"
  33. " <td colspan=\"2\" style=\"padding:15px 20px 0px 20px; font-size:16px;\">\n"
  34. " <p>\n"
  35. " Hello, ${object.partner_id.name|safe}\n"
  36. " </p>\n"
  37. " <p>\n"
  38. " We contacted you to ask you to give us your explicit consent to include your data in a data processing activity called\n"
  39. " <b>${object.activity_id.display_name|safe}</b>, property of\n"
  40. " <i>${object.activity_id.controller_id.display_name|safe}</i>\n"
  41. " </p>\n"
  42. " ${object.description or \"\"}\n"
  43. " <p>\n"
  44. " % if object.state == \"answered\":\n"
  45. " The last time you answered, you\n"
  46. " % elif object.state == \"sent\":\n"
  47. " If you do nothing, we will assume you have\n"
  48. " % endif\n"
  49. "\n"
  50. " % if object.accepted:\n"
  51. " <b>accepted</b>\n"
  52. " % else:\n"
  53. " <b>rejected</b>\n"
  54. " % endif\n"
  55. " such data processing.\n"
  56. " </p>\n"
  57. " <p>\n"
  58. " You can update your preferences below:\n"
  59. " </p>\n"
  60. " </td>\n"
  61. " </tr>\n"
  62. " <tr>\n"
  63. " <td style=\"padding:15px 20px 0px 20px; font-size:16px; text-align:right;\">\n"
  64. " <a href=\"/privacy/consent/accept/\" style=\"background-color: #449d44; padding: 12px; font-weight: 12px; text-decoration: none; color: #fff; border-radius: 5px; font-size:16px;\">\n"
  65. " Accept\n"
  66. " </a>\n"
  67. " </td>\n"
  68. " <td style=\"padding:15px 20px 0px 20px; font-size:16px; text-align:left;\">\n"
  69. " <a href=\"/privacy/consent/reject/\" style=\"background-color: #d9534f; padding: 12px; font-weight: 12px; text-decoration: none; color: #fff; border-radius: 5px; font-size:16px;\">\n"
  70. " Reject\n"
  71. " </a>\n"
  72. " </td>\n"
  73. " </tr>\n"
  74. " <tr>\n"
  75. " <td colspan=\"2\" style=\"padding:15px 20px 15px 20px; font-size:16px;\">\n"
  76. " <p>\n"
  77. " If you need further information, please respond to this email and we will attend your request as soon as possible.\n"
  78. " </p>\n"
  79. " <p>\n"
  80. " Thank you!\n"
  81. " </p>\n"
  82. " </td>\n"
  83. " </tr>\n"
  84. " </tbody>\n"
  85. " </table>\n"
  86. " <table style=\"width:600px;margin:0px auto;text-align:center;\">\n"
  87. " <tbody>\n"
  88. " <tr>\n"
  89. " <td style=\"padding-top:10px;font-size: 12px;\">\n"
  90. " <p>\n"
  91. " Sent by\n"
  92. " <a href=\"/\" style=\"color:#717188;\">${object.activity_id.controller_id.display_name|safe}</a>.\n"
  93. " </p>\n"
  94. " </td>\n"
  95. " </tr>\n"
  96. " </tbody>\n"
  97. " </table>\n"
  98. " </div>\n"
  99. " "
  100. msgstr ""
  101. #. module: privacy_consent
  102. #: model:mail.message.subtype,name:privacy_consent.mt_activity_acceptance_changed
  103. msgid "Acceptance Changed"
  104. msgstr ""
  105. #. module: privacy_consent
  106. #: model:mail.message.subtype,name:privacy_consent.mt_consent_acceptance_changed
  107. msgid "Acceptance Changed by Subject"
  108. msgstr ""
  109. #. module: privacy_consent
  110. #: model:mail.message.subtype,description:privacy_consent.mt_consent_acceptance_changed
  111. msgid "Acceptance status updated by subject"
  112. msgstr ""
  113. #. module: privacy_consent
  114. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__accepted
  115. #: model_terms:ir.ui.view,arch_db:privacy_consent.consent_search
  116. msgid "Accepted"
  117. msgstr ""
  118. #. module: privacy_consent
  119. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_activity__default_consent
  120. msgid "Accepted by default"
  121. msgstr ""
  122. #. module: privacy_consent
  123. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__message_needaction
  124. msgid "Action Needed"
  125. msgstr ""
  126. #. module: privacy_consent
  127. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__active
  128. msgid "Active"
  129. msgstr ""
  130. #. module: privacy_consent
  131. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__activity_id
  132. #: model_terms:ir.ui.view,arch_db:privacy_consent.consent_search
  133. msgid "Activity"
  134. msgstr ""
  135. #. module: privacy_consent
  136. #: selection:privacy.consent,state:0
  137. msgid "Answered"
  138. msgstr ""
  139. #. module: privacy_consent
  140. #: model_terms:ir.ui.view,arch_db:privacy_consent.consent_search
  141. msgid "Archived"
  142. msgstr ""
  143. #. module: privacy_consent
  144. #: model_terms:ir.ui.view,arch_db:privacy_consent.consent_form
  145. msgid "Ask for consent"
  146. msgstr ""
  147. #. module: privacy_consent
  148. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_activity__consent_required
  149. msgid "Ask subjects for consent"
  150. msgstr ""
  151. #. module: privacy_consent
  152. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__message_attachment_count
  153. msgid "Attachment Count"
  154. msgstr ""
  155. #. module: privacy_consent
  156. #: selection:privacy.activity,consent_required:0
  157. msgid "Automatically"
  158. msgstr ""
  159. #. module: privacy_consent
  160. #: selection:privacy.consent,state:0
  161. msgid "Awaiting response"
  162. msgstr ""
  163. #. module: privacy_consent
  164. #: model_terms:ir.ui.view,arch_db:privacy_consent.activity_form
  165. msgid "Consent"
  166. msgstr ""
  167. #. module: privacy_consent
  168. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_activity__consent_template_default_body_html
  169. msgid "Consent Template Default Body Html"
  170. msgstr ""
  171. #. module: privacy_consent
  172. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_activity__consent_template_default_subject
  173. msgid "Consent Template Default Subject"
  174. msgstr ""
  175. #. module: privacy_consent
  176. #: model:ir.model,name:privacy_consent.model_privacy_consent
  177. msgid "Consent of data processing"
  178. msgstr ""
  179. #. module: privacy_consent
  180. #: model:ir.actions.act_window,name:privacy_consent.consent_action
  181. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_activity__consent_ids
  182. #: model:ir.model.fields,field_description:privacy_consent.field_res_partner__privacy_consent_count
  183. #: model:ir.model.fields,field_description:privacy_consent.field_res_users__privacy_consent_count
  184. #: model:ir.ui.menu,name:privacy_consent.menu_privacy_consent
  185. msgid "Consents"
  186. msgstr ""
  187. #. module: privacy_consent
  188. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_activity__consent_count
  189. msgid "Consents count"
  190. msgstr ""
  191. #. module: privacy_consent
  192. #: model:ir.model,name:privacy_consent.model_res_partner
  193. msgid "Contact"
  194. msgstr ""
  195. #. module: privacy_consent
  196. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__create_uid
  197. msgid "Created by"
  198. msgstr ""
  199. #. module: privacy_consent
  200. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__create_date
  201. msgid "Created on"
  202. msgstr ""
  203. #. module: privacy_consent
  204. #: model:ir.model,name:privacy_consent.model_privacy_activity
  205. msgid "Data processing activities"
  206. msgstr ""
  207. #. module: privacy_consent
  208. #: model:mail.template,subject:privacy_consent.template_consent
  209. msgid "Data processing consent request for ${object.activity_id.display_name|safe}"
  210. msgstr ""
  211. #. module: privacy_consent
  212. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__display_name
  213. msgid "Display Name"
  214. msgstr ""
  215. #. module: privacy_consent
  216. #: selection:privacy.consent,state:0
  217. msgid "Draft"
  218. msgstr ""
  219. #. module: privacy_consent
  220. #: sql_constraint:privacy.consent:0
  221. msgid "Duplicated partner in this data processing activity"
  222. msgstr ""
  223. #. module: privacy_consent
  224. #: model:ir.model,name:privacy_consent.model_mail_template
  225. msgid "Email Templates"
  226. msgstr ""
  227. #. module: privacy_consent
  228. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_activity__consent_template_id
  229. msgid "Email template"
  230. msgstr ""
  231. #. module: privacy_consent
  232. #: model:ir.model.fields,help:privacy_consent.field_privacy_activity__consent_template_id
  233. msgid "Email to be sent to subjects to ask for consent. A good template should include details about the current consent request status, how to change it, and where to get more information."
  234. msgstr ""
  235. #. module: privacy_consent
  236. #: model:ir.model.fields,help:privacy_consent.field_privacy_activity__consent_required
  237. msgid "Enable if you need to track any kind of consent from the affected subjects"
  238. msgstr ""
  239. #. module: privacy_consent
  240. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__message_follower_ids
  241. msgid "Followers"
  242. msgstr ""
  243. #. module: privacy_consent
  244. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__message_channel_ids
  245. msgid "Followers (Channels)"
  246. msgstr ""
  247. #. module: privacy_consent
  248. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__message_partner_ids
  249. msgid "Followers (Partners)"
  250. msgstr ""
  251. #. module: privacy_consent
  252. #: model_terms:ir.ui.view,arch_db:privacy_consent.activity_form
  253. msgid "Generate and enqueue missing consent requests"
  254. msgstr ""
  255. #. module: privacy_consent
  256. #: model_terms:ir.ui.view,arch_db:privacy_consent.activity_form
  257. msgid "Generate missing draft consent requests"
  258. msgstr ""
  259. #. module: privacy_consent
  260. #: code:addons/privacy_consent/models/privacy_activity.py:139
  261. #, python-format
  262. msgid "Generated consents"
  263. msgstr ""
  264. #. module: privacy_consent
  265. #: model_terms:ir.ui.view,arch_db:privacy_consent.consent_search
  266. msgid "Group By"
  267. msgstr ""
  268. #. module: privacy_consent
  269. #: model_terms:ir.ui.view,arch_db:privacy_consent.form
  270. msgid "Hello,"
  271. msgstr ""
  272. #. module: privacy_consent
  273. #: model_terms:ir.ui.view,arch_db:privacy_consent.form
  274. msgid "I <b>accept</b> this processing of my data"
  275. msgstr ""
  276. #. module: privacy_consent
  277. #: model_terms:ir.ui.view,arch_db:privacy_consent.form
  278. msgid "I <b>reject</b> this processing of my data"
  279. msgstr ""
  280. #. module: privacy_consent
  281. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__id
  282. msgid "ID"
  283. msgstr ""
  284. #. module: privacy_consent
  285. #: model:ir.model.fields,help:privacy_consent.field_privacy_consent__message_unread
  286. msgid "If checked new messages require your attention."
  287. msgstr ""
  288. #. module: privacy_consent
  289. #: model:ir.model.fields,help:privacy_consent.field_privacy_consent__message_needaction
  290. msgid "If checked, new messages require your attention."
  291. msgstr ""
  292. #. module: privacy_consent
  293. #: model:ir.model.fields,help:privacy_consent.field_privacy_consent__message_has_error
  294. msgid "If checked, some messages have a delivery error."
  295. msgstr ""
  296. #. module: privacy_consent
  297. #: model_terms:ir.ui.view,arch_db:privacy_consent.form
  298. msgid "If it was a mistake, you can undo it here:"
  299. msgstr ""
  300. #. module: privacy_consent
  301. #: model:ir.model.fields,help:privacy_consent.field_privacy_consent__accepted
  302. msgid "Indicates current acceptance status, which can come from subject's last answer, or from the default specified in the related data processing activity."
  303. msgstr ""
  304. #. module: privacy_consent
  305. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__message_is_follower
  306. msgid "Is Follower"
  307. msgstr ""
  308. #. module: privacy_consent
  309. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__last_metadata
  310. msgid "Last Metadata"
  311. msgstr ""
  312. #. module: privacy_consent
  313. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent____last_update
  314. msgid "Last Modified on"
  315. msgstr ""
  316. #. module: privacy_consent
  317. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__write_uid
  318. msgid "Last Updated by"
  319. msgstr ""
  320. #. module: privacy_consent
  321. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__write_date
  322. msgid "Last Updated on"
  323. msgstr ""
  324. #. module: privacy_consent
  325. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__message_main_attachment_id
  326. msgid "Main Attachment"
  327. msgstr ""
  328. #. module: privacy_consent
  329. #: selection:privacy.activity,consent_required:0
  330. msgid "Manually"
  331. msgstr ""
  332. #. module: privacy_consent
  333. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__message_has_error
  334. msgid "Message Delivery error"
  335. msgstr ""
  336. #. module: privacy_consent
  337. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__message_ids
  338. msgid "Messages"
  339. msgstr ""
  340. #. module: privacy_consent
  341. #: model:ir.model.fields,help:privacy_consent.field_privacy_consent__last_metadata
  342. msgid "Metadata from the last acceptance or rejection by the subject"
  343. msgstr ""
  344. #. module: privacy_consent
  345. #: code:addons/privacy_consent/models/mail_template.py:24
  346. #, python-format
  347. msgid "Missing privacy consent link placeholders. You need at least these two links:\n"
  348. "<a href=\"%s\">Accept</a>\n"
  349. "<a href=\"%s\">Reject</a>"
  350. msgstr ""
  351. #. module: privacy_consent
  352. #: model:mail.message.subtype,name:privacy_consent.mt_activity_consent_new
  353. #: model:mail.message.subtype,name:privacy_consent.mt_consent_consent_new
  354. msgid "New Consent"
  355. msgstr ""
  356. #. module: privacy_consent
  357. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__message_needaction_counter
  358. msgid "Number of Actions"
  359. msgstr ""
  360. #. module: privacy_consent
  361. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__message_has_error_counter
  362. msgid "Number of error"
  363. msgstr ""
  364. #. module: privacy_consent
  365. #: model:ir.model.fields,help:privacy_consent.field_privacy_consent__message_needaction_counter
  366. msgid "Number of messages which requires an action"
  367. msgstr ""
  368. #. module: privacy_consent
  369. #: model:ir.model.fields,help:privacy_consent.field_privacy_consent__message_has_error_counter
  370. msgid "Number of messages with delivery error"
  371. msgstr ""
  372. #. module: privacy_consent
  373. #: model:ir.model.fields,help:privacy_consent.field_privacy_consent__message_unread_counter
  374. msgid "Number of unread messages"
  375. msgstr ""
  376. #. module: privacy_consent
  377. #: model:ir.model,name:privacy_consent.model_mail_mail
  378. msgid "Outgoing Mails"
  379. msgstr ""
  380. #. module: privacy_consent
  381. #: model:mail.message.subtype,description:privacy_consent.mt_activity_acceptance_changed
  382. msgid "Privacy consent request acceptance status changed"
  383. msgstr ""
  384. #. module: privacy_consent
  385. #: model:mail.message.subtype,description:privacy_consent.mt_activity_consent_new
  386. #: model:mail.message.subtype,description:privacy_consent.mt_consent_consent_new
  387. msgid "Privacy consent request created"
  388. msgstr ""
  389. #. module: privacy_consent
  390. #: model:mail.message.subtype,description:privacy_consent.mt_activity_state_changed
  391. #: model:mail.message.subtype,description:privacy_consent.mt_consent_state_changed
  392. msgid "Privacy consent request state changed"
  393. msgstr ""
  394. #. module: privacy_consent
  395. #: model:ir.model.fields,help:privacy_consent.field_res_partner__privacy_consent_count
  396. #: model:ir.model.fields,help:privacy_consent.field_res_users__privacy_consent_count
  397. msgid "Privacy consent requests amount"
  398. msgstr ""
  399. #. module: privacy_consent
  400. #: model:ir.model.fields,field_description:privacy_consent.field_res_partner__privacy_consent_ids
  401. #: model:ir.model.fields,field_description:privacy_consent.field_res_users__privacy_consent_ids
  402. msgid "Privacy consents"
  403. msgstr ""
  404. #. module: privacy_consent
  405. #: model:ir.actions.server,name:privacy_consent.cron_auto_consent_ir_actions_server
  406. #: model:ir.cron,cron_name:privacy_consent.cron_auto_consent
  407. #: model:ir.cron,name:privacy_consent.cron_auto_consent
  408. msgid "Request automatic data processing consents"
  409. msgstr ""
  410. #. module: privacy_consent
  411. #: code:addons/privacy_consent/models/privacy_activity.py:99
  412. #, python-format
  413. msgid "Require consent is available only for subjects in current database."
  414. msgstr ""
  415. #. module: privacy_consent
  416. #: model:ir.model.fields,help:privacy_consent.field_privacy_activity__server_action_id
  417. msgid "Run this action when a new consent request is created or its acceptance status is updated."
  418. msgstr ""
  419. #. module: privacy_consent
  420. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_activity__server_action_id
  421. msgid "Server action"
  422. msgstr ""
  423. #. module: privacy_consent
  424. #: model:ir.model.fields,help:privacy_consent.field_privacy_activity__default_consent
  425. msgid "Should we assume the subject has accepted if we receive no response?"
  426. msgstr ""
  427. #. module: privacy_consent
  428. #: model_terms:ir.ui.view,arch_db:privacy_consent.form
  429. msgid "Sincerely,<br/>"
  430. msgstr ""
  431. #. module: privacy_consent
  432. #: code:addons/privacy_consent/models/privacy_activity.py:91
  433. #, python-format
  434. msgid "Specify a mail template to ask automated consent."
  435. msgstr ""
  436. #. module: privacy_consent
  437. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__state
  438. #: model_terms:ir.ui.view,arch_db:privacy_consent.consent_search
  439. msgid "State"
  440. msgstr ""
  441. #. module: privacy_consent
  442. #: model:mail.message.subtype,name:privacy_consent.mt_activity_state_changed
  443. #: model:mail.message.subtype,name:privacy_consent.mt_consent_state_changed
  444. msgid "State Changed"
  445. msgstr ""
  446. #. module: privacy_consent
  447. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__partner_id
  448. msgid "Subject"
  449. msgstr ""
  450. #. module: privacy_consent
  451. #: model:ir.model.fields,help:privacy_consent.field_privacy_consent__partner_id
  452. msgid "Subject asked for consent."
  453. msgstr ""
  454. #. module: privacy_consent
  455. #: model:ir.actions.server,name:privacy_consent.sync_blacklist
  456. msgid "Sync partner's email blacklist status"
  457. msgstr ""
  458. #. module: privacy_consent
  459. #: model_terms:ir.ui.view,arch_db:privacy_consent.form
  460. msgid "Thank you!"
  461. msgstr ""
  462. #. module: privacy_consent
  463. #: model_terms:ir.ui.view,arch_db:privacy_consent.form
  464. msgid "Thanks for your response."
  465. msgstr ""
  466. #. module: privacy_consent
  467. #: model_terms:ir.ui.view,arch_db:privacy_consent.activity_form
  468. msgid "This could enqueue many consent emails, are you sure to proceed?"
  469. msgstr ""
  470. #. module: privacy_consent
  471. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__message_unread
  472. msgid "Unread Messages"
  473. msgstr ""
  474. #. module: privacy_consent
  475. #: model:ir.model.fields,field_description:privacy_consent.field_privacy_consent__message_unread_counter
  476. msgid "Unread Messages Counter"
  477. msgstr ""
  478. #. module: privacy_consent
  479. #: model_terms:ir.ui.view,arch_db:privacy_consent.form
  480. msgid "We asked you to authorize us to process your data in this data processing activity:"
  481. msgstr ""
  482. #. module: privacy_consent
  483. #: model_terms:ir.ui.view,arch_db:privacy_consent.form
  484. msgid "We have recorded this action on your side."
  485. msgstr ""
  486. #. module: privacy_consent
  487. #: model_terms:ir.ui.view,arch_db:privacy_consent.form
  488. msgid "You have <b class=\"text-danger\">rejected</b> such processing."
  489. msgstr ""
  490. #. module: privacy_consent
  491. #: model_terms:ir.ui.view,arch_db:privacy_consent.form
  492. msgid "You have <b class=\"text-success\">accepted</b> such processing."
  493. msgstr ""