Browse Source

Rename Reply-to label in mail notification

Guénaël Muller 7 years ago
parent
commit
ea7238fb04
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tracim/tracim/lib/notifications.py

+ 1 - 1
tracim/tracim/lib/notifications.py View File

@@ -289,7 +289,7 @@ class EmailNotifier(object):
289 289
             subject = subject.replace(EST.WORKSPACE_LABEL, main_content.workspace.label.__str__())
290 290
             subject = subject.replace(EST.CONTENT_LABEL, main_content.label.__str__())
291 291
             subject = subject.replace(EST.CONTENT_STATUS_LABEL, main_content.get_status().label.__str__())
292
-            reply_to_label = l_('{username} in workspace {workspace}').format(
292
+            reply_to_label = l_('{username} & all members of {workspace}').format(
293 293
                 username=user.display_name,
294 294
                 workspace=main_content.workspace.label)
295 295