summaryrefslogtreecommitdiffstats
path: root/webapp/components
diff options
context:
space:
mode:
authorWilliam Gathoye <william@gathoye.be>2017-05-11 15:45:25 +0200
committerHarrison Healey <harrisonmhealey@gmail.com>2017-05-11 09:45:25 -0400
commit01fab5de9411f700f43a703c1502473059bc73f5 (patch)
treefd4da81a42d0387289d37101c13d9c62ba8a6859 /webapp/components
parent81b2fd99825b1f92f7aad3591b95425656497a16 (diff)
downloadchat-01fab5de9411f700f43a703c1502473059bc73f5.tar.gz
chat-01fab5de9411f700f43a703c1502473059bc73f5.tar.bz2
chat-01fab5de9411f700f43a703c1502473059bc73f5.zip
Fix some issues in English (#5714)
Diffstat (limited to 'webapp/components')
-rw-r--r--webapp/components/error_bar.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/components/error_bar.jsx b/webapp/components/error_bar.jsx
index 94555ce04..97fbbdca0 100644
--- a/webapp/components/error_bar.jsx
+++ b/webapp/components/error_bar.jsx
@@ -151,7 +151,7 @@ export default class ErrorBar extends React.Component {
message = (
<FormattedHTMLMessage
id={ErrorBarTypes.LICENSE_EXPIRING}
- defaultMessage='Enterprise license expires on {date}. <a href="{link}" target="_blank">Please renew.</a>'
+ defaultMessage='Enterprise license expires on {date}. <a href="{link}" target="_blank">Please renew</a>.'
values={{
date: displayExpiryDate(),
link: renewalLink
@@ -162,7 +162,7 @@ export default class ErrorBar extends React.Component {
message = (
<FormattedHTMLMessage
id={ErrorBarTypes.LICENSE_EXPIRED}
- defaultMessage='Enterprise license is expired and some features may be disabled. <a href="{link}" target="_blank">Please renew.</a>'
+ defaultMessage='Enterprise license is expired and some features may be disabled. <a href="{link}" target="_blank">Please renew</a>.'
values={{
link: renewalLink
}}