From 1b6ae0b462a01ab7e89bf3d00b0a70caa2bdf851 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Sat, 30 Jan 2016 13:13:22 +0530 Subject: [PATCH] Change the label text from "View my solution" to "View Solution" This commit changes the text of the label from "View my solution" to "View solution". As disscussed in the issue, campers visiting profile pages of others, saw "View my solution" and found this confusing. Removing the "my" from the text makes it generic, to either user's own page or other's pages. Tested locally. --- server/views/account/show.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/views/account/show.jade b/server/views/account/show.jade index f7cf7c4e80..3498ffbf58 100644 --- a/server/views/account/show.jade +++ b/server/views/account/show.jade @@ -156,7 +156,7 @@ block content td.col-xs-2.hidden-xs= challenge.lastUpdated ? moment(challenge.lastUpdated, 'x').format("MMM DD, YYYY") : '' td.col-xs-2.hidden-xs if (challenge.solution) - a(href='/challenges/' + removeOldTerms(challenge.name) + '?solution=' + encodeURIComponent(encodeFcc(challenge.solution)), target='_blank') View my solution + a(href='/challenges/' + removeOldTerms(challenge.name) + '?solution=' + encodeURIComponent(encodeFcc(challenge.solution)), target='_blank') View solution else a(href='/challenges/' + removeOldTerms(challenge.name)) View this challenge td.col-xs-12.visible-xs @@ -180,7 +180,7 @@ block content td.col-xs-2.hidden-xs= challenge.lastUpdated ? moment(challenge.lastUpdated, 'x').format("MMM DD, YYYY") : '' td.col-xs-2.hidden-xs if (challenge.solution) - a(href='/challenges/' + removeOldTerms(challenge.name) + '?solution=' + encodeURIComponent(encodeFcc(challenge.solution)), target='_blank') View my solution + a(href='/challenges/' + removeOldTerms(challenge.name) + '?solution=' + encodeURIComponent(encodeFcc(challenge.solution)), target='_blank') View solution else a(href='/challenges/' + removeOldTerms(challenge.name)) View this challenge td.col-xs-12.visible-xs