From 015477278914b38d559e6bd77cabea16c8aee2bb Mon Sep 17 00:00:00 2001 From: Luke Barnard Date: Thu, 8 Feb 2018 18:18:57 +0000 Subject: [PATCH 1/3] Change wording of debug log submission Fixes https://github.com/vector-im/riot-web/issues/5985 --- src/components/structures/UserSettings.js | 6 +++--- src/i18n/strings/en_EN.json | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/structures/UserSettings.js b/src/components/structures/UserSettings.js index b1eedd1a90..4237cd78eb 100644 --- a/src/components/structures/UserSettings.js +++ b/src/components/structures/UserSettings.js @@ -794,11 +794,11 @@ module.exports = React.createClass({ } return (
-

{ _t("Bug Report") }

+

{ _t("Debug Logs Submission") }

-

{ _t("Found a bug?") }

+

{ _t("Want to send logs?") }

diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 6139ac2a91..d51f20dbd0 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -500,8 +500,8 @@ "Download %(text)s": "Download %(text)s", "Invalid file%(extra)s": "Invalid file%(extra)s", "Error decrypting image": "Error decrypting image", - "Image '%(Body)s' cannot be displayed.": "Image '%(Body)s' cannot be displayed.", "This image cannot be displayed.": "This image cannot be displayed.", + "Image '%(Body)s' cannot be displayed.": "Image '%(Body)s' cannot be displayed.", "Error decrypting video": "Error decrypting video", "%(senderDisplayName)s changed the avatar for %(roomName)s": "%(senderDisplayName)s changed the avatar for %(roomName)s", "%(senderDisplayName)s removed the room avatar.": "%(senderDisplayName)s removed the room avatar.", @@ -855,9 +855,9 @@ "Device ID:": "Device ID:", "Device key:": "Device key:", "Ignored Users": "Ignored Users", - "Bug Report": "Bug Report", - "Found a bug?": "Found a bug?", - "Report it": "Report it", + "Debug Logs Submission": "Debug Logs Submission", + "Want to send logs?": "Want to send logs?", + "Submit debug logs": "Submit debug logs", "Riot collects anonymous analytics to allow us to improve the application.": "Riot collects anonymous analytics to allow us to improve the application.", "Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.", "Learn more about how we use analytics.": "Learn more about how we use analytics.", From aed7c2039d7c43ad0099e64c7b301be72176ae56 Mon Sep 17 00:00:00 2001 From: Luke Barnard Date: Mon, 19 Mar 2018 14:54:50 +0000 Subject: [PATCH 2/3] Update debug logs submission explanation --- src/components/structures/UserSettings.js | 9 ++++++++- src/i18n/strings/en_EN.json | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/components/structures/UserSettings.js b/src/components/structures/UserSettings.js index 4237cd78eb..92ad2a4c20 100644 --- a/src/components/structures/UserSettings.js +++ b/src/components/structures/UserSettings.js @@ -796,7 +796,14 @@ module.exports = React.createClass({

{ _t("Debug Logs Submission") }

-

{ _t("Want to send logs?") }

+

{ + _t( "If you've submitted a bug via GitHub, debug logs can help " + + "us track down the problem. Debug logs contain application " + + "usage data including your username, the IDs or aliases of " + + "the rooms or groups you have visited and the usernames of " + + "other users. They do not contian messages." + ) + }

diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index d51f20dbd0..b9c0813e40 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -856,7 +856,7 @@ "Device key:": "Device key:", "Ignored Users": "Ignored Users", "Debug Logs Submission": "Debug Logs Submission", - "Want to send logs?": "Want to send logs?", + "If you've submitted a bug via GitHub, debug logs can help us track down the problem. Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contian messages.": "If you've submitted a bug via GitHub, debug logs can help us track down the problem. Debug logs contain application usage data including your username, the IDs or aliases of the rooms or groups you have visited and the usernames of other users. They do not contian messages.", "Submit debug logs": "Submit debug logs", "Riot collects anonymous analytics to allow us to improve the application.": "Riot collects anonymous analytics to allow us to improve the application.", "Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.", From 6789a6ec25ad4f629d9387f1929a7b9347748982 Mon Sep 17 00:00:00 2001 From: Luke Barnard Date: Mon, 19 Mar 2018 14:57:41 +0000 Subject: [PATCH 3/3] Add missing trailing comma --- src/components/structures/UserSettings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/structures/UserSettings.js b/src/components/structures/UserSettings.js index 19ce1a6994..f6629b4b09 100644 --- a/src/components/structures/UserSettings.js +++ b/src/components/structures/UserSettings.js @@ -802,7 +802,7 @@ module.exports = React.createClass({ "us track down the problem. Debug logs contain application " + "usage data including your username, the IDs or aliases of " + "the rooms or groups you have visited and the usernames of " + - "other users. They do not contian messages." + "other users. They do not contian messages.", ) }