) : (
diff --git a/plugins/talk-plugin-local-auth/client/translations.yml b/plugins/talk-plugin-local-auth/client/translations.yml
index 8a3d7c90e..90c25ae0a 100644
--- a/plugins/talk-plugin-local-auth/client/translations.yml
+++ b/plugins/talk-plugin-local-auth/client/translations.yml
@@ -11,7 +11,7 @@ en:
changed_password_msg: "Changed Password - Your password has been successfully changed"
forgot_password_sent: "Forgot Password - We sent you an email to recover your password"
change_username:
- change_username_note: "Usernames can be changed every 14 days"
+ change_username_note: "Usernames can only be changed once every 14 days. Your username is not currently eligible to be updated."
save: "Save"
edit_profile: "Edit Profile"
cancel: "Cancel"
diff --git a/plugins/talk-plugin-profile-data/client/components/AccountDeletionRequestedSign.js b/plugins/talk-plugin-profile-data/client/components/AccountDeletionRequestedSign.js
index 38d968c1d..f0e7be8f3 100644
--- a/plugins/talk-plugin-profile-data/client/components/AccountDeletionRequestedSign.js
+++ b/plugins/talk-plugin-profile-data/client/components/AccountDeletionRequestedSign.js
@@ -37,13 +37,13 @@ class AccountDeletionRequestedSign extends React.Component {
diff --git a/plugins/talk-plugin-profile-data/client/translations.yml b/plugins/talk-plugin-profile-data/client/translations.yml
index f38958e7f..e139cfb57 100644
--- a/plugins/talk-plugin-profile-data/client/translations.yml
+++ b/plugins/talk-plugin-profile-data/client/translations.yml
@@ -20,9 +20,9 @@ en:
cancel_account_deletion_request: "Cancel Account Deletion Request"
delete_my_account: "Delete My Account"
delete_my_account_description: "Deleting your account will permanently erase your profile and remove all your comments from this site."
- already_submitted_request_description: "You have already submitted a request to delete your account. Your account will be deleted on {0}. You may cancel the request until that time"
+ already_submitted_request_description: "You have already submitted a request to delete your account. Your account will be deleted after {0}. You may cancel the request until that time"
your_request_submitted_description: "Your request has been submitted and confirmation has been sent to the email address associated with your account."
- your_account_deletion_scheduled: "Your account is scheduled to be deleted at:"
+ your_account_deletion_scheduled: "Your account is scheduled to be deleted after:"
changed_your_mind: "Changed your mind?"
simply_go_to: "Simply go to your account again before this time and click"
tell_us_why: "Tell us why"
diff --git a/plugins/talk-plugin-profile-data/server/router.js b/plugins/talk-plugin-profile-data/server/router.js
index 2a2e0161a..6d8f47d03 100644
--- a/plugins/talk-plugin-profile-data/server/router.js
+++ b/plugins/talk-plugin-profile-data/server/router.js
@@ -71,9 +71,15 @@ async function loadComments(ctx, userID, archive, latestContentDate) {
const csv = stringify();
// Add all the streams as files to the archive.
- archive.append(csv, { name: 'talk-export/my_comments.csv' });
+ archive.append(csv, { name: 'comments-export/my_comments.csv' });
- csv.write(['ID', 'Timestamp', 'Article', 'Link', 'Body']);
+ csv.write([
+ 'Comment ID',
+ 'Published Timestamp',
+ 'Article URL',
+ 'Comment Link',
+ 'Comment Text',
+ ]);
// Load the first batch's comments from the latest date that we were provided
// from the token.